Interface BeforeUpdateHook
-
public interface BeforeUpdateHookCalled before updating 'chart'.
If any plugin returnsfalse, the update is cancelled (and thus subsequent render(s)) until another 'update' is triggered.- Author:
- Andrea "Stock" Stocchero
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleanonBeforeUpdate(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.
-
-
-
Method Detail
-
onBeforeUpdate
boolean 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.- Parameters:
chart- the chart instance.argument- the argument passed for update- Returns:
falseto cancel the chart update.
-
-