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

XYDiagram3D.SeriesDistance Property

Specifies the distance between Manhattan Bar series, as a fraction of axis units.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v19.1.dll

Declaration

[XtraSerializableProperty]
[XtraChartsLocalizableCategory(XtraChartsCategory.Layout)]
public double SeriesDistance { get; set; }

Property Value

Type Description
Double

A Double value, measured in fractions of X-axis units. An axis unit is a distance between two major values on the X-axis.

Remarks

The SeriesDistance property specifies the distance between two Manhattan Bar series, as a fraction of axis units (the distance between two major axis tickmarks). This means that the distance is being auto-adjusted when the chart is resized. For example, if the SeriesDistance property is set to 0.5, the distance between the two series will be always equal to half the range between the two major values on the axis.

To specify this distance in pixels, use the XYDiagram3D.SeriesDistanceFixed property. If the SeriesDistance and XYDiagram3D.SeriesDistanceFixed properties are in effect simultaneously, their values are accumulated together, expressing constant and variable distances.

SeriesDistance.png

See Also