public abstract class AbstractEventHandler extends Object implements EnterEventHandler, LeaveEventHandler, ClickEventHandler
| Constructor and Description |
|---|
AbstractEventHandler() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
onClick(DataLabelsContext context)
Invoked to manage CLICK events on labels.
|
boolean |
onEnter(DataLabelsContext context)
Invoked to manage ENTER events on labels.
|
boolean |
onLeave(DataLabelsContext context)
Invoked to manage LEAVE events on labels.
|
public boolean onClick(DataLabelsContext context)
ClickEventHandleronClick in interface ClickEventHandlercontext - DataLabelsPlugin.ID plugin context instancetrue, the label is updated with the new context and the chart re-rendered.public boolean onLeave(DataLabelsContext context)
LeaveEventHandleronLeave in interface LeaveEventHandlercontext - DataLabelsPlugin.ID plugin context instancetrue, the label is updated with the new context and the chart re-rendered.public boolean onEnter(DataLabelsContext context)
EnterEventHandleronEnter in interface EnterEventHandlercontext - DataLabelsPlugin.ID plugin context instancetrue, the label is updated with the new context and the chart re-rendered.