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

BootstrapClientChart.ZoomEnd Event

Fires when a chart zooming or scrolling ends.

Declaration

ZoomEnd: ASPxClientEvent<BootstrapClientChartZoomEndEventHandler<BootstrapClientChart>>

Event Data

The ZoomEnd event's data class is BootstrapClientChartZoomEndEventArgs. 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.
rangeEnd The value that became the end of the argument axis after zooming or scrolling ended.
rangeStart The value that became the start of the argument axis after zooming or scrolling ended.

Remarks

When chart zooming or scrolling starts, the BootstrapClientChart.ZoomStart event fires.

The BootstrapChart.ZoomingMode and the BootstrapChart.ScrollingMode properties activate the chart zooming and scrolling, respectively.

See Also