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 |
|
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 />
See Also