How to Change Chart Legend Color?

I tried to change Legend Series color, however couldn't find any option to do it.

I also tried to use Markers like below, it also didn't work.

How can I change Legend Series spesific Color?

<RadzenStackedColumnSeries Fills="@(new [] { "#60C73C" })" Data="@listTACPU" CategoryProperty="SAMPLE_TIME" Title=CPU ValueProperty="COUNT">
  <RadzenMarkers Fill="#60C73C" MarkerType="Radzen.Blazor.MarkerType.Square"/>
</RadzenStackedColumnSeries>

Use the Fill property instead.

fill

2 Likes

It worked, thank you.