Is it possible to add template for DataLabel in Accumulation Chart?

Answer:

Yes we can add template for DataLabel using IAccumulationChartTemplate. Here is the code snippet for your reference.

<SfAccumulationChart Width="80%" Height="50%" EnableSmartLabels="false">

// add your additional code here

<AccumulationChartSeriesCollection>

<AccumulationChartSeries DataSource="@DataSource" XName="xValue" YName="yValue" Radius="100%" InnerRadius="80%">

<AccumulationDataLabelSettings Visible="true" Name="xValue" Position="AccumulationLabelPosition.Outside">

AccumulationDataLabelSettings>

AccumulationChartSeries>

AccumulationChartSeriesCollection>

SfAccumulationChart>


Find the sample for to add template for DataLabel in Accumulation Chart from here.

Loader.
Up arrow icon