Class ChartEvents
Object
ChartEvents
Namespace holding the concrete click-event builders for chart Dashboard events:
ChartEvents.OnChartClick (a
chart-type-specific onClick(), for example ScatterChart.onClick()),
ChartEvents.OnRowClick (from AbstractChartBuilder.onRowClick()), and ChartEvents.OnCellClick (from
AbstractChartBuilder.onCellClick()). Not instantiated; the nested classes are always obtained from
one of those methods. AbstractChartBuilder.onRowClick() and AbstractChartBuilder.onCellClick()
are public and inherited by every chart type, but WaterfallChart and WaterfallComparisonChart
don't actually support the interaction: the call compiles, but nothing fires on the Data tab of those two
chart types.- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic classChartEvents.OnCellClick<C extends AbstractChartBuilder<?>>The click-event builder for a cell click on a chart's Data tab, obtained fromAbstractChartBuilder.onCellClick()rather than instantiated directly.static classChartEvents.OnChartClick<C extends AbstractChartBuilder<?>,E extends ChartEvents.OnChartClick<C, E>> Base class for a chart-type-specificonClick()click-event builder, for exampleScatterChart.ScatterOnChartClickorBarLineChart.BarLineOnChartClick.static classChartEvents.OnRowClick<C extends AbstractChartBuilder<?>>The click-event builder for a row click on a chart's Data tab, obtained fromAbstractChartBuilder.onRowClick()rather than instantiated directly. -
Method Summary