ChartScrollEventArgs.OldAxisXRange Property
OBSOLETE
This property is obsolete now. Use OldXRange instead.
Gets the old value of the AxisBase.Range property for the X-axis.
Namespace: DevExpress.XtraCharts
Assembly: DevExpress.XtraCharts.v24.1.dll
NuGet Package: DevExpress.Charts
Declaration
[Obsolete("This property is obsolete now. Use OldXRange instead.")]
public AxisRange OldAxisXRange { get; }
Property Value
Type | Description |
---|---|
AxisRange | An AxisRange object which represents the old value of the axis range. |
Remarks
Use the OldAxisXRange and ChartScrollEventArgs.NewAxisXRange properties to obtain the X-axis’s AxisBase.Range property values before and after a chart is scrolled in the ChartControl.Scroll event handler. For more information on scrolling a chart’s diagram, please refer to the Zooming and Scrolling (2D XY-Charts) topic.
See Also