ChartControl.Scroll Event
In This Article
Occurs when an end-user scrolls the ChartControl.
Namespace: DevExpress.XtraCharts
Assembly: DevExpress.XtraCharts.v24.2.UI.dll
NuGet Package: DevExpress.Win.Charts
#Declaration
public event ChartScrollEventHandler Scroll
#Event Data
The Scroll event's data class is ChartScrollEventArgs. The following properties provide information specific to this event:
Property | Description |
---|---|
Axis |
Gets the X-axis of the diagram point. |
Axis |
Gets the Y-axis of the diagram point. |
New |
Obsolete. Gets the new value of the Axis property for the X-axis.
|
New |
Obsolete. Gets the new value of the Axis property for the Y-axis.
|
New |
Gets the new value of the Axis |
New |
Gets the new value of the Axis |
Old |
Obsolete. Gets the old value of the Axis property for the X-axis.
|
Old |
Obsolete. Gets the old value of the Axis property for the Y-axis.
|
Old |
Gets the old value of the Axis |
Old |
Gets the old value of the Axis |
Scroll |
Gets the scrolling orientation, i. |
Type | Gets the scrolling type, which specifies scrolling characteristics. |
#Remarks
Note that this event is raised for 2D Charts only. In 3D Charts, the similar ChartControl.Scroll3D event is raised.
Note
In the Scroll event handler, you cannot change the layout of a chart. For example, modifying the Chart
See Also