Aspose.Slides for .NET 16.1.0におけるパブリックAPIと後方互換性のない変更
Contents
[
Hide
]
パブリックAPIの変更
IChartTextBlockFormatおよびITextFrameFormatインターフェイスにRotationAngleプロパティが追加されました
RotationAngleプロパティがAspose.Slides.Charts.IChartTextBlockFormatおよびAspose.Slides.ITextFrameFormatインターフェイスに追加されました。 これは、バウンディングボックス内のテキストに適用されるカスタム回転を指定します。
using (Presentation pres = new Presentation())
{
IChart chart = pres.Slides[0].Shapes.AddChart(ChartType.ClusteredColumn, 50, 50, 500, 300);
IChartSeries series = chart.ChartData.Series[0];
series.Labels.DefaultDataLabelFormat.ShowValue = true;
series.Labels.DefaultDataLabelFormat.TextFormat.TextBlockFormat.RotationAngle = 65;
chart.HasTitle = true;
chart.ChartTitle.AddTextFrameForOverriding("カスタムタイトル").TextFrameFormat.RotationAngle = -30;
pres.Save("out.pptx", SaveFormat.Pptx);
}