Regarding technical issue in aspose slides

I am trying to change the series name in a PPt Chart using aspose slides ,but i am unable to do it.Please

Hi,


Thank you for your interest in Aspose.Slides.

I have observed your comments and worked over your requirements. I request you to please try using following sample code on your end to serve the purpose.

ISlide sld = pres.Slides[0];
IChart chart = sld.Shapes.AddChart(ChartType.ClusteredColumn, 0, 0, 500, 500);
IChartDataWorkbook wb = chart.ChartData.ChartDataWorkbook;
wb.GetCell(0,0,1,“Custom Series Name”);

I hope this will be helpful. Please share if I may help you further in this regard.

Best Regards,