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

DxPolarChartBarSeries<T, TArgument, TValue>.MinBarHeight Property

Specifies the minimum bar height, in pixels.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

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

#Property Value

Type Description
Int32

The bar height, in pixels.

#Remarks

A Polar Chart can significantly scale down bars to visualize series values and their ratios. Use the MinBarHeight property to increase the height of bars and enhance series readability. The property value has no effect on the underlying point values.

The images below show how different MinBarHeight property values affect bars:

The charts with different MinBarHeight values

The following code snippet sets the minimum bar height to 25 pixels:

Razor
<DxPolarChart Data=@DataSource>
    <DxPolarChartBarSeries ArgumentField="@((DiscretePoint i) => i.Arg)"
                           ValueField="@((DiscretePoint i) => i.Night)"
                           Name="Night"
                           MinBarHeight="25">
    </DxPolarChartBarSeries>
</DxPolarChart>
See Also