Package org.pepstock.charba.client.datalabels.events
Contains the
DataLabelsPlugin.ID
plugin event handlers interfaces to catch event of plugin.- Author:
- Andrea "Stock" Stocchero
-
Interface Summary Interface Description ClickEventHandler Callback interface ofDataLabelsPlugin.ID
plugin to manage CLICK events on labels.
Charba events need to be enabled in order to get the associated label event working.
If the callback explicitly returnstrue
, the label is updated with the new context and the chart re-rendered.EnterEventHandler Callback interface ofDataLabelsPlugin.ID
plugin to manage ENTER events on labels.
Charba events need to be enabled in order to get the associated label event working.
If the callback explicitly returnstrue
, the label is updated with the new context and the chart re-rendered.LeaveEventHandler Callback interface ofDataLabelsPlugin.ID
plugin to manage LEAVE events on labels.
Charba events need to be enabled in order to get the associated label event working.
If the callback explicitly returnstrue
, the label is updated with the new context and the chart re-rendered. -
Class Summary Class Description AbstractEventHandler Abstract event handler which implements all interfaces to listen DATA LABELS events.
Can be used as base class for custom implementation.