Skip to main content
All docs
V25.1
  • BoxPlotSeriesView.EqualBoxWidth Property

    Gets or sets a value that that indicates whether all Box Plot points of the same series should always have the same width, or they may have different widths, if some points of other series are missing.

    Namespace: DevExpress.XtraCharts

    Assembly: DevExpress.XtraCharts.v25.1.dll

    NuGet Package: DevExpress.Charts

    Declaration

    [XtraChartsLocalizableCategory(XtraChartsCategory.Layout)]
    public bool EqualBoxWidth { get; set; }

    Property Value

    Type Description
    Boolean

    true, if all Box Plot points of the same series should always have the same width; otherwise, false.

    Remarks

    Use the EqualBarWidth to control whether neighboring points should be extended to fill the empty area, when some points are missing in the same data point.

    Note

    The EqualBarWidth property is synchronized in all Box Plots in a ChartControl, and all of them always return the same value. So, changing the EqualBarWidth property for any such series, affects the EqualBarWidth property value in all other similar series.

    For the same reason, when trying to set the EqualBarWidth property before a Series is added to a chart’s collection, an ArgumentException is thrown.

    See Also