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

BootstrapChartValueAxis.MultipleAxesSpacing Property

Adds a pixel-measured empty space between two side-by-side value axes. Applies if several value axes are located on one side of the chart.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v19.2.dll

Declaration

[DefaultValue(5)]
public int MultipleAxesSpacing { get; set; }

Property Value

Type Default Description
Int32 5

An integer number that specifies an empty space in pixels.

Remarks

The order of axes in the BootstrapChartValueAxisCollection array plays a significant role when you specify this option. When you need to add an empty space between two side-by-side axes, set the MultipleAxesSpacing option for the axis declared last in the BootstrapChartValueAxisCollection array. For example, to add space between the second and the third axes, set the MultipleAxesSpacing option for the third axis.

Note

Obviously, setting this option for the first axis takes no effect, because this axis is never the last one in any pair of axes.

See Also