Uses of Class
org.pepstock.charba.client.items.PluginTooltipArgument
-
Packages that use PluginTooltipArgument Package Description org.pepstock.charba.client Main package with all charts implementation, global classes and common interfaces.org.pepstock.charba.client.plugins.hooks Contains all hooks interfaces used bySmartPluginin order to activate a custom plugin. -
-
Uses of PluginTooltipArgument in org.pepstock.charba.client
Methods in org.pepstock.charba.client with parameters of type PluginTooltipArgument Modifier and Type Method Description default voidPlugin. onAfterTooltipDraw(IsChart chart, PluginTooltipArgument item)Called after drawing the 'tooltip'.
Note that this hook will not be called if the tooltip drawing has been previously cancelled.default booleanPlugin. onBeforeTooltipDraw(IsChart chart, PluginTooltipArgument item)Called before drawing the 'tooltip'.
If any plugin returnsfalse, the tooltip drawing is cancelled until another 'render' is triggered. -
Uses of PluginTooltipArgument in org.pepstock.charba.client.plugins.hooks
Methods in org.pepstock.charba.client.plugins.hooks with parameters of type PluginTooltipArgument Modifier and Type Method Description voidAfterTooltipDrawHook. onAfterTooltipDraw(IsChart chart, PluginTooltipArgument item)Called after drawing the 'tooltip'.
Note that this hook will not be called if the tooltip drawing has been previously cancelled.booleanBeforeTooltipDrawHook. onBeforeTooltipDraw(IsChart chart, PluginTooltipArgument item)Called before drawing the 'tooltip'.
If any plugin returnsfalse, the tooltip drawing is cancelled until another 'render' is triggered.
-