onDoubleTap method

  1. @override
void onDoubleTap(
  1. double xPos,
  2. double yPos
)
override

Performs the double-tap action of appropriate point.

Hits while double tapping on the chart.

  • xPos - X value of the touch position.
  • yPos - Y value of the touch position.

Implementation

@override
void onDoubleTap(double xPos, double yPos) =>
    _tooltipRenderingDetails.tooltipBehavior.showByPixel(xPos, yPos);