Thank you for your patience. You can display the data label in pivot chart by using the DisplayText property of the series style of the chart control. The following code snippet demonstrates how to enable data labels for the series in the pivot chart.
pivotChart1.ChartControl.Series[0].Style.DisplayText = true; pivotChart1.ChartControl.Series[1].Style.DisplayText = true; pivotChart1.ChartControl.Series[2].Style.DisplayText = true; pivotChart1.ChartControl.Series[3].Style.DisplayText = true; pivotChart1.ChartControl.Series[4].Style.DisplayText = true; |
You may also refer to the following documentation for more information on enabling the data labels in a chart
https://help.syncfusion.com/windowsforms/chart/chart-series#displaytext
Attachment:
SF179993_abf011d7.zip