DxPolarChartAreaSeries<T, TArgument, TValue>.Opacity Property
Specifies area series opacity.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.1.dll
NuGet Package: DevExpress.Blazor
Declaration
[DefaultValue(0.5)]
[Parameter]
public double Opacity { get; set; }
Property Value
Type | Default | Description |
---|---|---|
Double | 0.5 | A value between |
Remarks
The Opacity
property accepts values from 0 (transparent) to 1 (opaque). The following example changes the default property value:
<DxPolarChart Data=@DataSource>
<DxPolarChartAreaSeries ArgumentField="@((DiscretePoint i) => i.Arg)"
ValueField="@((DiscretePoint i) => i.Day)"
Opacity="0.8">
</DxPolarChartAreaSeries>
</DxPolarChart>
See Also