API Público y Cambios Incompatibles con Versiones Anteriores en Aspose.Slides para Java 15.8.0

Cambios en la API Pública

Se han agregado los métodos getDoughnutHoleSize(), setDoughnutHoleSize(byte) a IChartSeries y ChartSeries

Especifica el tamaño del agujero en un gráfico de anillo.


 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);