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 bySmartPlugin
in 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 void
Plugin. 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 void
Plugin. 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 boolean
Plugin. 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 boolean
Plugin. 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 class
PluginDatasetArgument
This 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 void
AfterDatasetsUpdateHook. 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.void
AfterUpdateHook. 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.boolean
BeforeDatasetsUpdateHook. 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.boolean
BeforeUpdateHook. 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.
-