Skip to main content
All docs
V25.1
  • DxPolarChartBarSeries<T, TArgument, TValue>.MinBarHeight Property

    Specifies the minimum bar height, in pixels.

    Namespace: DevExpress.Blazor

    Assembly: DevExpress.Blazor.v25.1.dll

    NuGet Package: DevExpress.Blazor

    Declaration

    [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:

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