ClickCallbackFunc typedef

ClickCallbackFunc = void Function(Event e, dynamic x, List points)

Implementation

typedef ClickCallbackFunc = void Function(
  // the event object for the click
  Event e,
  // the x value that was clicked (for dates, this is milliseconds since epoch)
  dynamic x,
  // the closest points along that date. See Point properties for details
  List points,
);