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

XYDiagramPaneBase.EnableAxisYZooming Property

Specifies whether zooming is allowed for the pane along its Y-axis.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v21.2.dll

NuGet Package: DevExpress.Charts

Declaration

[XtraChartsLocalizableCategory(XtraChartsCategory.Behavior)]
public DefaultBoolean EnableAxisYZooming { get; set; }

Property Value

Type Description
DefaultBoolean

A DefaultBoolean value, which represents the availability of Y-axis zooming.

Available values:

Name Description
True

true. DefaultBoolean.True has a constant value of 0, while the standard true value corresponds to a value of 1. In Visual Basic, do not use implicit conversion of Boolean values to DefaultBoolean, and vice versa, as the conversion may produce incorrect results.

False

false. DefaultBoolean.False has a constant value of 1, while the standard false value corresponds to a value of 0. In Visual Basic, do not use implicit conversion of Boolean values to DefaultBoolean, and vice versa, as the conversion may produce incorrect results.

Default

The default behavior determined by the control’s logic.

Remarks

Use the EnableAxisYZooming property to specify whether it’s allowed to zoom an individual pane along its Y-axis.

Important

The EnableAxisYZooming property affects on the pane’s zooming capability only on the WinForms platform. The ASP.NET WebForms Chart Control and MVC Chart Extension do not support this feature.

When the EnableAxisYZooming property is set to Default, the actual scrolling status is determined by the XYDiagram2D.EnableAxisYZooming property value.

For more information, refer to Zooming and Scrolling (2D XY-Charts).

See Also