See: Description
Interface | Description |
---|---|
AddHandlerEventHandler |
Event handler for new event handler.
|
AnimationCompleteEventHandler |
Event handler for chart animation complete event.
|
AnimationProgressEventHandler |
Event handler for chart animation progress event.
|
AxisClickEventHandler |
Event handler for clicking on the chart axis.
|
ChartClickEventHandler |
Event handler for clicking on the chart.
|
ChartEventHandler |
Common interface for all chart event handlers, used to recognize when the chart event handlers (and only the chart ones) have
been activated.
|
ChartHoverEventHandler |
Event handler for hovering on the chart.
|
ChartResizeEventHandler |
Event handler for chart resize event managing.
|
DatasetSelectionEventHandler |
Event handler for chart dataset selecting.
|
LegendClickEventHandler |
Event handler for clicking on the chart legend.
|
LegendHoverEventHandler |
Event handler for hovering on the chart legend.
|
LegendLeaveEventHandler |
Event handler for leaving on the chart legend.
|
RemoveHandlerEventHandler |
Event handler for removing a chart event handler.
|
TitleClickEventHandler |
Event handler for clicking on the chart title.
|
Class | Description |
---|---|
AbstractEvent<H extends EventHandler> |
Abstract event for all events which must contain a native event.
This event contains the chart instance as source. |
AddHandlerEvent |
Event which is fired when new event handler has been added to the chart.
This event should use only for use internal only to manage internally all handlers. |
AnimationCompleteEvent |
Event which is fired when the animation of the chart is completed.
|
AnimationProgressEvent |
Event which is fired when the animation of the chart is progressing.
|
AxisClickEvent |
Event which is fired when the user clicks on the axis of the chart.
|
ChartClickEvent |
Event which is fired when the user clicks on the chart.
|
ChartHoverEvent |
Event which is fired when the user hovers on the chart.
|
ChartNativeEvent |
This event extends the native DOM event of GWT.
It has been created mapping the native event provided by CHART.JS interfaces. |
ChartResizeEvent |
Event which is fired when the chart has been resized.
|
DatasetSelectionEvent |
Event which is fired when the user clicks on the chart and selects a dataset.
This event doesn't suppress the click event on the chart. |
LegendClickEvent |
Event which is fired when the user clicks on the legend of the chart.
|
LegendHoverEvent |
Event which is fired when the user hovers on the legend of the chart.
|
LegendLeaveEvent |
Event which is fired when the user leaves on the legend of the chart.
|
RemoveHandlerEvent |
Event which is fired when new event handler has been removed to the chart.
This event should use only for use internal only to manage internally all handlers. |
TitleClickEvent |
Event which is fired when the user clicks on the title of the chart.
|