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

ChartZoomEventArgs.OldAxisYRange Property

OBSOLETE

This property is obsolete now. Use OldYRange instead.

Gets the old value of the AxisBase.Range property for the Y-axis.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v18.2.dll

Declaration

[Obsolete("This property is obsolete now. Use OldYRange instead.")]
public AxisRange OldAxisYRange { get; }

Property Value

Type Description
AxisRange

An AxisRange object which represents the old value of the axis range.

Remarks

Use the OldAxisYRange and ChartZoomEventArgs.NewAxisYRange properties to obtain the Y-axis’s AxisBase.Range property values before and after a chart is zoomed in the ChartControl.Zoom event handler. For more information on zooming a chart’s diagram, please refer to the Zooming and Scrolling (2D XY-Charts) topic.

See Also