Skip to main content
All docs
V24.2

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

DxRangeSelectorChart.BarGroupWidth Property

Specifies the width of bar groups.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
[Parameter]
public int BarGroupWidth { get; set; }

#Property Value

Type Description
Int32

The bar group width in pixels.

#Remarks

Use the BarGroupWidth property to specify the width of all bar groups in DxRangeSelectorChart. The maximum bar group width equals the major tick interval. You can also use the DxChartBarSeriesBase.BarWidth property to specify the bar width for an individual series.

Razor
<DxRangeSelector Width="500px"
                 Height="200px"
                 Data="@Data">
    <DxRangeSelectorChart BarGroupWidth="50">
        @* ... *@
    </DxRangeSelectorChart>
</DxRangeSelector>
See Also