Skip to main content
All docs
V24.1

DxPolarChart<T>.NegativesAsZeroes Property

Specifies whether the Polar Chart treats negative values as zeros in stacked bar series.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.1.dll

NuGet Package: DevExpress.Blazor

Declaration

[DefaultValue(false)]
[Parameter]
public bool NegativesAsZeroes { get; set; }

Property Value

Type Default Description
Boolean false

true to display negative values as zeros; otherwise, false.

Remarks

The Polar Chart component allows you to create series with negative values. You can set the NegativesAsZeroes property to true to force the component to treat these values as zeros.

<DxPolarChart Data=@DataSource NegativesAsZeroes="true">
    @* ... *@
<DxPolarChart />

Negatives: Comparison

See Also