Public API and Backwards Incompatible Changes in Aspose.Slides for Java 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 Java 15.8.0 API.
Public API Changes
Methods getDoughnutHoleSize(), setDoughnutHoleSize(byte) have been added to IChartSeries and ChartSeries
Specifies the size of the hole in a doughnut chart.
Presentation pres = new Presentation();
IChart chart = pres.getSlides().get_Item(0).getShapes().addChart(ChartType.Doughnut, 50, 50, 400, 400);
chart.getChartData().getSeriesGroups().get_Item(0).setDoughnutHoleSize((byte)90);
pres.save("ChartSeries.API.DoughnutHoleSize.pptx", SaveFormat.Pptx);