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

DXChart.AxisY Property

Gets or sets Y-axis that calculates data points’ locations by values.

Namespace: DevExpress.Xamarin.iOS.Charts

Assembly: DevExpress.Xamarin.iOS.Charts.dll

Declaration

public virtual DXNumericAxisY AxisY { get; set; }

Property Value

Type Description
DXNumericAxisY

The Y-axis that calculates data points’ locations by values.

Example

The Chart Control’s Axes manage the Chart’s coordinate space. All series are measured and aggregated using axes. The following example demonstrates how to customize chart axes:

this.chart.AxisX = new DXDateTimeAxisX {
    MeasureUnit = DXDateTimeMeasureUnit.Year,
    GridAlignment = DXDateTimeMeasureUnit.Year,
    GridOffset = 0,
    GridSpacing = 1,
};

this.chart.AxisY = new DXNumericAxisY {
    GridAlignment = 1.0,
    AlwaysShowZeroLevel = false,
};

The table below contains classes and properties that configure chart axes:

DXChart.AxisX

Gets or sets the X-axis that calculates data points’ locations by arguments.

DXChart.AxisY

Gets or sets Y-axis that calculates data points’ locations by values.

DXQualitativeAxisX

The X-axis that manages qualitative arguments.

DXNumericAxisX

The X-axis that manages numeric arguments.

DXDateTimeAxisX

The X-axis that manages date-time arguments.

DXNumericAxisY

The Y-axis that manages numeric values.

See Also