Uses of Class
org.pepstock.charba.client.items.PluginDatasetArgument
-
Packages that use PluginDatasetArgument Package Description org.pepstock.charba.client Main package with all charts implementation, global classes and common interfaces. -
-
Uses of PluginDatasetArgument in org.pepstock.charba.client
Methods in org.pepstock.charba.client with parameters of type PluginDatasetArgument Modifier and Type Method Description default voidPlugin. onAfterDatasetDraw(IsChart chart, PluginDatasetArgument item)Called after the 'chart' datasets at the given 'args.index' have been drawn (datasets are drawn in the reverse order).
Note that this hook will not be called if the datasets drawing has been previously cancelled.default voidPlugin. onAfterDatasetUpdate(IsChart chart, PluginDatasetArgument item)Called after the 'chart' datasets at the given 'args.index' has been updated.
Note that this hook will not be called if the datasets update has been previously cancelled.default booleanPlugin. onBeforeDatasetDraw(IsChart chart, PluginDatasetArgument item)Called before drawing the 'chart' dataset at the given 'args.index' (datasets are drawn in the reverse order).
If any plugin returnsfalse, the datasets drawing is cancelled until another 'render' is triggered.default booleanPlugin. onBeforeDatasetUpdate(IsChart chart, PluginDatasetArgument item)Called before updating the 'chart' dataset at the given 'args.index'.
If any plugin returnsfalse, the datasets update is cancelled until another 'update' is triggered.
-