Hi,
How to tell AccumulationChart to display labels in percentage? or percentage need to be computed at the data level?
<SfAccumulationChart ID="Sources" EnableBorderOnMouseMove="false" Title="Incident by Sources">
<AccumulationChartTooltipSettings Header="" Format="<b>${point.x}</b><br>Source : <b>${point.y} incidents</b>" Enable="true"></AccumulationChartTooltipSettings>
<AccumulationChartLegendSettings Visible="false"></AccumulationChartLegendSettings>
<AccumulationChartSeriesCollection>
<AccumulationChartSeries DataSource="@PieDataIncidentBySource" XName="Labels" YName="Val" Name="Sources" Explode="true" ExplodeOffset="0%" ExplodeIndex="0">
<AccumulationDataLabelSettings Visible="true" Name="DataLabelMappingName" Position="AccumulationLabelPosition.Inside">
<AccumulationChartConnector Length="20px" Type="ConnectorType.Curve"></AccumulationChartConnector>
<AccumulationChartDataLabelFont FontWeight="600"></AccumulationChartDataLabelFont>
</AccumulationDataLabelSettings>
<AccumulationChartAnimation Enable="true"></AccumulationChartAnimation>
</AccumulationChartSeries>
</AccumulationChartSeriesCollection>
</SfAccumulationChart>
Regards
Sao