Back to Devexpress

DxChartSeries.Color Property

blazor-devexpress-dot-blazor-dot-dxchartseries-2f0a9272.md

latest1.6 KB
Original Source

DxChartSeries.Color Property

Specifies the series color.

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 color.

|

Remarks

Use the Color property to specify the series line color.

The following example shows possible ways to define the color:

razor
<DxChart Data="@ChartsData">
    <DxChartLineSeries Name="2017" 
                       Filter="@((SaleInfo s) => s.Date.Year == 2017)" 
                       Color="Color.Red"
                       ArgumentField="@(s => s.City)" 
                       ValueField="@(s => s.Amount)" />
    <DxChartLineSeries Name="2019" 
                       Filter="@((SaleInfo s) => s.Date.Year == 2019)" 
                       Color="@(Color.FromArgb(0, 0, 255))"
                       ArgumentField="@(s => s.City)" 
                       ValueField="@(s => s.Amount)" />
    <DxChartLegend Position="RelativePosition.Outside" HorizontalAlignment="HorizontalAlignment.Right" />
</DxChart>

Run Demo: Charts - Overview

See Also

DxChartSeries Class

DxChartSeries Members

DevExpress.Blazor Namespace