InteractionModelFunc typedef

InteractionModelFunc = dynamic Function(Event event, Dygraph dygraph, DygraphDragContext context)

Implementation

typedef InteractionModelFunc = Function(
  // the related interaction event (mouse, touch, scroll, etc.)
  Event event,
  // the reference graph
  Dygraph dygraph,
  // the dragging context object
  DygraphDragContext context,
);