Aspose.Slides for .NET 15.8.0における公開APIと後方互換性のない変更
Contents
[
Hide
]
公開APIの変更
プロパティDoughnutHoleSizeがIChartSeriesおよびChartSeriesに追加されました
ドーナツチャートの穴のサイズを指定します。
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);
}