Interface BeforeTooltipDrawHook
-
public interface BeforeTooltipDrawHookCalled before drawing the 'tooltip'.
If any plugin returnsfalse, the tooltip drawing is cancelled until another 'render' is triggered.- Author:
- Andrea "Stock" Stocchero
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanonBeforeTooltipDraw(IsChart chart, PluginTooltipArgument item)Called before drawing the 'tooltip'.
If any plugin returnsfalse, the tooltip drawing is cancelled until another 'render' is triggered.
-
-
-
Method Detail
-
onBeforeTooltipDraw
boolean onBeforeTooltipDraw(IsChart chart, PluginTooltipArgument item)
Called before drawing the 'tooltip'.
If any plugin returnsfalse, the tooltip drawing is cancelled until another 'render' is triggered.- Parameters:
chart- the chart instance.item- The tooltip instance.- Returns:
falseto cancel the chart tooltip drawing.
-
-