showByPixel method

void showByPixel(
  1. double x,
  2. double y
)

Displays the tooltip at the specified x and y-positions.

  • x & y - logical pixel values to position the tooltip.

Implementation

void showByPixel(double x, double y) {
  if (_stateProperties != null) {
    final TooltipRenderingDetails renderingDetails =
        TooltipHelper.getRenderingDetails(
            _stateProperties.renderingDetails.tooltipBehaviorRenderer);
    renderingDetails.internalShowByPixel(x, y);
  }
}