Public API and Backwards Incompatible Changes in Aspose.Slides for .NET 15.8.0
Contents
[
Hide
]
This page lists all added or removed classes, methods, properties and so on, and other changes introduced with the Aspose.Slides for .NET 15.8.0 API.
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);
}