Package | Description |
---|---|
org.pepstock.charba.client |
Main package with all charts implementation, global classes and common interfaces.
|
Modifier and Type | Method and Description |
---|---|
default void |
Plugin.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 void |
Plugin.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 boolean |
Plugin.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 returns false , the datasets drawing is cancelled until another 'render' is triggered. |
default boolean |
Plugin.onBeforeDatasetUpdate(IsChart chart,
PluginDatasetArgument item)
Called before updating the 'chart' dataset at the given 'args.index'.
If any plugin returns false , the datasets update is cancelled until another 'update' is triggered. |