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

XYDiagramSeriesViewBase.AxisX Property

Specifies the X-axis, that is used to plot the current series on a XYDiagram.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v19.1.dll

Declaration

[NonTestableProperty]
[XtraSerializableProperty(XtraSerializationVisibility.Hidden)]
[XtraChartsLocalizableCategory(XtraChartsCategory.Layout)]
public AxisXBase AxisX { get; set; }

Property Value

Type Description
AxisXBase

An AxisX or a SecondaryAxisX object, that is the X-axis for the current series.

Remarks

The AxisX class inherits properties and methods from the base Axis class which implements the common axes functionality, and represents a primary axis of arguments within a chart control in 2D series (except for Swift Plot).

The SecondaryAxisX class is derived from the same base class and represents a secondary axis on a diagram. The collection of secondary axes is available via the XYDiagram.SecondaryAxesX property.

Any data series of an XY-type can be plotted with a primary axis or any of the secondary axes.

For more information, refer to Primary and Secondary Axes.

See Also