Public API and Backwards Incompatible Changes in Aspose.Slides for .NET 15.8.0

Public API Changes

Property DoughnutHoleSize has been added to IChartSeries and ChartSeries

Specifies the size of the hole in a doughnut chart.


 using (Presentation pres = new Presentation())

{

   IChart chart = pres.Slides[0].Shapes.AddChart(ChartType.Doughnut, 50, 50, 400, 400);

   chart.ChartData.SeriesGroups[0].DoughnutHoleSize = 90;

   pres.Save("ChartSeries.API.DoughnutHoleSize.pptx", SaveFormat.Pptx);

}