How to create color palette using accumulation chart?

Answer:

We can create color palette using AccumulationChartSeries palette property in Blazor chart. Here is the code snippet for your reference.

<SfAccumulationChart>

<AccumulationChartSeriesCollection>

<AccumulationChartSeries Palettes="@palettes">

AccumulationChartSeries>

AccumulationChartSeriesCollection>

SfAccumulationChart>

@code{

public String[] palettes = new String[] { "#E94649", "#F6B53F", "#6FAAB0" };

}


Find the sample for to Color palette using accumulation chart from here .

Loader.
Up arrow icon