图表数据表
Contents
[
Hide
]
为图表数据表设置字体属性
Aspose.Slides for .NET 提供支持以更改系列颜色中的类别颜色。
- 实例化 Presentation 类对象。
- 在幻灯片上添加图表。
- 设置图表表格。
- 设置字体高度。
- 保存修改后的演示文稿。
以下是给出的示例。
using (Presentation pres = new Presentation("test.pptx"))
{
IChart chart = pres.Slides[0].Shapes.AddChart(ChartType.ClusteredColumn, 50, 50, 600, 400);
chart.HasDataTable = true;
chart.ChartDataTable.TextFormat.PortionFormat.FontBold = NullableBool.True;
chart.ChartDataTable.TextFormat.PortionFormat.FontHeight = 20;
pres.Save("output.pptx", SaveFormat.Pptx);
}