corelibraries-devexpress-dot-xtracharts-dot-xydiagrampanebase.md
Specifies whether zooming is allowed for the pane along its X-axis.
Namespace : DevExpress.XtraCharts
Assembly : DevExpress.XtraCharts.v25.2.dll
NuGet Package : DevExpress.Charts
[XtraChartsLocalizableCategory(XtraChartsCategory.Behavior)]
public DefaultBoolean EnableAxisXZooming { get; set; }
<XtraChartsLocalizableCategory(XtraChartsCategory.Behavior)>
Public Property EnableAxisXZooming As DefaultBoolean
| Type | Description |
|---|---|
| DefaultBoolean |
A DefaultBoolean value, which represents the availability of X-axis zooming.
|
Available values:
| Name | Description | Return Value |
|---|---|---|
| True |
The value is true.
|
0
| | False |
The value is false.
|
1
| | Default |
The value is specified by a global option or a higher-level object.
|
2
|
Use the EnableAxisXZooming property to specify whether it’s allowed to zoom an individual pane along its X-axis.
Important
The EnableAxisXZooming property affects on the pane’s zooming capability only on WinForms platform. The ASP.NET WebForms Chart Control and MVC Chart Extension do not support this feature.
When the EnableAxisXZooming property is set to Default , the actual scrolling status is determined by the XYDiagram2D.EnableAxisXZooming property value.
For more information, refer to Zooming and Scrolling (2D XY-Charts).
See Also