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 bySmartPlugin
in 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 void
Plugin. 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 boolean
Plugin. 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 void
AfterTooltipDrawHook. 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.boolean
BeforeTooltipDrawHook. onBeforeTooltipDraw(IsChart chart, PluginTooltipArgument item)
Called before drawing the 'tooltip'.
If any plugin returnsfalse
, the tooltip drawing is cancelled until another 'render' is triggered.
-