Uses of Class
org.pepstock.charba.client.items.PluginUpdateArgument
-
Packages that use PluginUpdateArgument Package Description org.pepstock.charba.client Main package with all charts implementation, global classes and common interfaces.org.pepstock.charba.client.items Contains all elements generated by CHART.JS, which are mapping java script objects, to use at runtime in plugins, events or controllers.org.pepstock.charba.client.plugins.hooks Contains all hooks interfaces used bySmartPluginin order to activate a custom plugin. -
-
Uses of PluginUpdateArgument in org.pepstock.charba.client
Methods in org.pepstock.charba.client with parameters of type PluginUpdateArgument Modifier and Type Method Description default voidPlugin. onAfterDatasetsUpdate(IsChart chart, PluginUpdateArgument argument)Called after the 'chart' datasets have been updated.
Note that this hook will not be called if the datasets update has been previously cancelled.default voidPlugin. onAfterUpdate(IsChart chart, PluginUpdateArgument argument)Called after 'chart' has been updated and before rendering.
Note that this hook will not be called if the chart update has been previously cancelled.default booleanPlugin. onBeforeDatasetsUpdate(IsChart chart, PluginUpdateArgument argument)Called before updating the 'chart' datasets.
If any plugin returnsfalse, the datasets update is cancelled until another 'update' is triggered.default booleanPlugin. onBeforeUpdate(IsChart chart, PluginUpdateArgument argument)Called before updating 'chart'.
If any plugin returnsfalse, the update is cancelled (and thus subsequent render(s)) until another 'update' is triggered. -
Uses of PluginUpdateArgument in org.pepstock.charba.client.items
Subclasses of PluginUpdateArgument in org.pepstock.charba.client.items Modifier and Type Class Description classPluginDatasetArgumentThis is a wrapper of java script object which represents a dataset.
This object is used in the plugins methods of CHART.JS. -
Uses of PluginUpdateArgument in org.pepstock.charba.client.plugins.hooks
Methods in org.pepstock.charba.client.plugins.hooks with parameters of type PluginUpdateArgument Modifier and Type Method Description voidAfterDatasetsUpdateHook. onAfterDatasetsUpdate(IsChart chart, PluginUpdateArgument argument)Called after the 'chart' datasets have been updated.
Note that this hook will not be called if the datasets update has been previously cancelled.voidAfterUpdateHook. onAfterUpdate(IsChart chart, PluginUpdateArgument argument)Called after 'chart' has been updated and before rendering.
Note that this hook will not be called if the chart update has been previously cancelled.booleanBeforeDatasetsUpdateHook. onBeforeDatasetsUpdate(IsChart chart, PluginUpdateArgument argument)Called before updating the 'chart' datasets.
If any plugin returnsfalse, the datasets update is cancelled until another 'update' is triggered.booleanBeforeUpdateHook. onBeforeUpdate(IsChart chart, PluginUpdateArgument argument)Called before updating 'chart'.
If any plugin returnsfalse, the update is cancelled (and thus subsequent render(s)) until another 'update' is triggered.
-