No, it’s fine.
"Isn’t this line (series.Labels.ShowPercentage = true;) supposed to show/hide the percentage sign on the value of the label that is placed on top of the bars of a bar chart?"
No, it’s fine.
Hi,
PresentationEx pres = new PresentationEx();SlideEx slide = pres.Slides[0];ChartEx chart = slide.Shapes.AddChart(ChartTypeEx.Pie, 100, 100, 300, 300);chart.ChartData.Series[0].Labels.ShowPercentage = true;pres.Write(“D:\Aspose Data\TestPie.pptx”);