onEnter method

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

Performs the mouse hover action of chart.

Hits while enter tap on the chart.

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

Implementation

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