图表数据表
Contents
[
Hide
]
为图表数据表设置字体属性
Aspose.Slides for Java 提供了更改系列颜色类别的支持。
- 实例化 Presentation 类对象。
- 在幻灯片上添加图表。
- 设置图表表格。
- 设置字体高度。
- 保存修改后的演示文稿。
下面给出了示例代码。
// 创建空演示文稿
Presentation pres = new Presentation();
try {
IChart chart = pres.getSlides().get_Item(0).getShapes().addChart(ChartType.ClusteredColumn, 50, 50, 600, 400);
chart.setDataTable(true);
chart.getChartDataTable().getTextFormat().getPortionFormat().setFontBold(NullableBool.True);
chart.getChartDataTable().getTextFormat().getPortionFormat().setFontHeight(20);
pres.save("output.pptx", SaveFormat.Pptx);
} finally {
if (pres != null) pres.dispose();
}