Back to Devexpress

DxPolarChartBaseSeries<T, TArgument, TValue>.Color Property

blazor-devexpress-dot-blazor-dot-dxpolarchartbaseseries-3-360f73a3.md

latest1.3 KB
Original Source

DxPolarChartBaseSeries<T, TArgument, TValue>.Color Property

Specifies the color of the series.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
[Parameter]
public Color Color { get; set; }

Property Value

TypeDescription
Color

The series color.

|

Remarks

Use the Color property to change the color of the series.

The following code example colors the series blue:

razor
@using System.Drawing

<DxPolarChart Data="@DataSource">
    <DxPolarChartLineSeries ArgumentField="@((DiscretePoint i) => i.Arg)"
                            ValueField="@((DiscretePoint i) => i.Day)"
                            Color="Color.Blue">
    </DxPolarChartLineSeries>
</DxPolarChart>

See Also

DxPolarChartBaseSeries<T, TArgument, TValue> Class

DxPolarChartBaseSeries<T, TArgument, TValue> Members

DevExpress.Blazor Namespace