public abstract class AbstractChartsLifecycleListener extends Object implements ChartsLifecycleListener
Constructor and Description |
---|
AbstractChartsLifecycleListener() |
Modifier and Type | Method and Description |
---|---|
void |
onAfterDestroy(AbstractChart<?,?> chart)
Called after the chart as been destroyed.
|
void |
onAfterInit(AbstractChart<?,?> chart)
Called after 'chart' has been initialized and before the first update.
|
void |
onBeforeDestroy(AbstractChart<?,?> chart)
Called before the chart as been destroyed.
|
void |
onBeforeInit(AbstractChart<?,?> chart)
Called before initializing 'chart'.
|
public void onBeforeInit(AbstractChart<?,?> chart)
ChartsLifecycleListener
onBeforeInit
in interface ChartsLifecycleListener
chart
- the chart instance.public void onAfterInit(AbstractChart<?,?> chart)
ChartsLifecycleListener
onAfterInit
in interface ChartsLifecycleListener
chart
- the chart instance.public void onBeforeDestroy(AbstractChart<?,?> chart)
ChartsLifecycleListener
onBeforeDestroy
in interface ChartsLifecycleListener
chart
- the chart instance.public void onAfterDestroy(AbstractChart<?,?> chart)
ChartsLifecycleListener
onAfterDestroy
in interface ChartsLifecycleListener
chart
- the chart instance.