Skip to main content
A newer version of this page is available. .

BootstrapClientChartBase.SeriesClick Event

Fires when a user clicks a series.

Declaration

SeriesClick: ASPxClientEvent<BootstrapClientCoordinateSystemChartSeriesClickEventHandler<BootstrapClientChartBase>>

Event Data

The SeriesClick event's data class is BootstrapUIWidgetElementClickEventArgs. The following properties provide information specific to this event:

Property Description
component The widget instance. Inherited from BootstrapUIWidgetEventArgsBase.
element The widget’s container. Inherited from BootstrapUIWidgetEventArgsBase.
jQueryEvent The jQuery event that caused the handler execution.
target The DOM element that initiated the event. Inherited from BootstrapUIWidgetElementActionEventArgs.

Remarks

The target event argument specifies the clicked series.

Note

The SeriesClick also fires when a user clicks a series point or a legend item, but only if it is not canceled in the BootstrapClientChartBase.PointClick and BootstrapClientChartBase.LegendClick event handlers.

See Also