onTouchDown method

  1. @override
void onTouchDown (double xPos, double yPos)
override

Performs the touch-down action on the chart.

Implementation

@override
void onTouchDown(double xPos, double yPos) {
  _selectionRenderer.performSelection(Offset(xPos, yPos));
}