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"> var data = context as IAccumulationChartTemplate; < td align="center"> @data.Y AccumulationDataLabelSettings> AccumulationChartSeriesCollection> |
Find the sample for to add template for DataLabel in Accumulation Chart from
here.