Skip to main content
A newer version of this page is available.
All docs
V19.1

BootstrapCoordinateSystemChart.EqualBarWidth Property

OBSOLETE

Use the series' IgnoreEmptyPoints property instead.

Specifies whether all bars in a series must have the same width, or may have different widths if any points in other series are missing.

Namespace: DevExpress.Web.Bootstrap

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

Declaration

[DefaultValue(true)]
[Obsolete("Use the series' IgnoreEmptyPoints property instead.")]
[Browsable(false)]
public virtual bool EqualBarWidth { get; set; }

Property Value

Type Default Description
Boolean **true**

true, if all bars in a series must have the same width; otherwise, false.

Remarks

If some values for a series are set to zero or not specified, bars that represent these values will be missing from the chart. To fill the empty area by extending the width of the neighboring bars, set the EqualBarWidth property to false. The bars will have different widths, but there will be no empty areas.

To set a custom width for bars, as well as the spacing between bars, use the BootstrapCoordinateSystemChart.BarWidth property.

See Also