DxPolarChartBaseSeries<T, TArgument, TValue>.Color Property
Specifies the color of the series.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.1.dll
NuGet Package: DevExpress.Blazor
Declaration
[Parameter]
public Color Color { get; set; }
Property Value
Type | Description |
---|---|
Color | The series color. |
Remarks
Use the Color
property to change the color of the series.
The following code example colors the series blue:
@using System.Drawing
<DxPolarChart Data="@DataSource">
<DxPolarChartLineSeries ArgumentField="@((DiscretePoint i) => i.Arg)"
ValueField="@((DiscretePoint i) => i.Day)"
Color="Color.Blue">
</DxPolarChartLineSeries>
</DxPolarChart>
See Also