Skip to main content

ChartScrollEventArgs.NewAxisYRange Property

OBSOLETE

This property is obsolete now. Use NewYRange instead.

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

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v23.2.dll

NuGet Package: DevExpress.Charts

Declaration

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

Property Value

Type Description
AxisRange

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

Remarks

Use the ChartScrollEventArgs.OldAxisYRange and NewAxisYRange properties to obtain the Y-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