图表图例
Contents
[
Hide
]
图例定位
为了设置图例属性,请遵循以下步骤:
- 创建一个 Presentation 类的实例。
- 获取幻灯片的引用。
- 在幻灯片上添加一个图表。
- 设置图例的属性。
- 将演示文稿写入 PPTX 文件。
在下面的示例中,我们为图表图例设置了位置和大小。
// 创建一个 Presentation 类的实例
Presentation pres = new Presentation();
try {
// 获取幻灯片的引用
ISlide slide = pres.getSlides().get_Item(0);
// 在幻灯片上添加一个聚合柱状图
IChart chart = slide.getShapes().addChart(ChartType.ClusteredColumn, 50, 50, 500, 500);
// 设置图例属性
chart.getLegend().setX(50 / chart.getWidth());
chart.getLegend().setY(50 / chart.getHeight());
chart.getLegend().setWidth(100 / chart.getWidth());
chart.getLegend().setHeight(100 / chart.getHeight());
// 将演示文稿写入磁盘
pres.save("Legend_out.pptx", SaveFormat.Pptx);
} finally {
if (pres != null) pres.dispose();
}
设置图例的字体大小
Aspose.Slides for Java 允许开发人员设置图例的字体大小。请遵循以下步骤:
- 实例化 Presentation 类。
- 创建默认图表。
- 设置字体大小。
- 设置最小轴值。
- 设置最大轴值。
- 将演示文稿写入磁盘。
// 创建一个 Presentation 类的实例
Presentation pres = new Presentation();
try {
IChart chart = pres.getSlides().get_Item(0).getShapes().addChart(ChartType.ClusteredColumn, 50, 50, 600, 400);
chart.getLegend().getTextFormat().getPortionFormat().setFontHeight(20);
chart.getAxes().getVerticalAxis().setAutomaticMinValue(false);
chart.getAxes().getVerticalAxis().setMinValue(-5);
chart.getAxes().getVerticalAxis().setAutomaticMaxValue(false);
chart.getAxes().getVerticalAxis().setMaxValue(10);
pres.save("output.pptx", SaveFormat.Pptx);
} finally {
if (pres != null) pres.dispose();
}
设置单个图例的字体大小
Aspose.Slides for Java 允许开发人员设置单个图例条目的字体大小。请遵循以下步骤:
- 实例化 Presentation 类。
- 创建默认图表。
- 访问图例条目。
- 设置字体大小。
- 设置最小轴值。
- 设置最大轴值。
- 将演示文稿写入磁盘。
// 创建一个 Presentation 类的实例
Presentation pres = new Presentation();
try {
IChart chart = pres.getSlides().get_Item(0).getShapes().addChart(ChartType.ClusteredColumn, 50, 50, 600, 400);
IChartTextFormat tf = chart.getLegend().getEntries().get_Item(1).getTextFormat();
tf.getPortionFormat().setFontBold(NullableBool.True);
tf.getPortionFormat().setFontHeight(20);
tf.getPortionFormat().setFontItalic(NullableBool.True);
tf.getPortionFormat().getFillFormat().setFillType(FillType.Solid);
tf.getPortionFormat().getFillFormat().getSolidFillColor().setColor(Color.BLUE);
pres.save("output.pptx", SaveFormat.Pptx);
} finally {
if (pres != null) pres.dispose();
}