在创建powerpoint图表时,图例是默认显示的,如果我们只需要图表中的数据而不需要图例或是图例中的某一个图例项,那我们可以在创建之后将其删除。本文将介绍如何使用spire.presentation删除powerpoint图表中的指定图例项。
下图是我们所用到的powerpoint图表,它的图例中含有3个图例项(红色选中区域):
c#
//创建presentation实例
presentation ppt = new presentation();
//加载powerpoint文档
ppt.loadfromfile("input.pptx");
//获取图表
ichart chart = ppt.slides[0].shapes[0] as ichart;
//调用chartlegend.deleteentry方法删除图例中第一、二个图例项
chart.chartlegend.deleteentry(0);
chart.chartlegend.deleteentry(1);
//保存文档
ppt.savetofile("output.pptx", fileformat.pptx2010);
vb.net
'创建presentation实例
dim ppt as new presentation()
'加载powerpoint文档
ppt.loadfromfile("input.pptx")
'获取图表
dim chart as ichart = trycast(ppt.slides(0).shapes(0), ichart)
'调用chartlegend.deleteentry方法删除图例中第一、二个图例项
chart.chartlegend.deleteentry(0)
chart.chartlegend.deleteentry(1)
'保存文档
ppt.savetofile("output.pptx", fileformat.pptx2010)
效果图: