Java 在PPT中创建散点图的实现示例
程序员文章站
2022-06-18 13:38:54
目录创建图表前创建图表时其他注意事项本文将以java代码示例展示如何在ppt幻灯片中创建散点图表。创建图表前需要在java程序中导入用于操作ppt的jar包 free spire.presentati...
本文将以java代码示例展示如何在ppt幻灯片中创建散点图表。
创建图表前
需要在java程序中导入用于操作ppt的jar包 free spire.presentation for java。可参考如下两种方法导入:
方法1:手动导入jar包。需下载jar包到本地,并解压,找到lib文件夹下的jar文件。然后按照如下步骤执行,导入:
方法2:maven仓库下载导入。需在pom.xml文件中配置maven仓库路径,并指定依赖。配置内容如下:
<repositories> <repository> <id>com.e-iceblue</id> <url>https://repo.e-iceblue.cn/repository/maven-public/</url> </repository> </repositories> <dependencies> <dependency> <groupid> e-iceblue </groupid> <artifactid>spire.presentation.free</artifactid> <version>3.9.0</version> </dependency> </dependencies>
创建图表时
通过指定数据源,并在幻灯片中的指定坐标位置插入图表。该jar包提供了shapecollection.appendchart(charttype type, rectangle2d rectangle, boolean init)方法向幻灯片添加特定类型的图表,charttype枚举预定义了73种图表类型,包括但不限于散点图、柱图、饼图等。
本次创建散点图,主要通过以下步骤完成:
- 创建 presentation 类的实例。
- 使用 shapecollection.appendchart() 方法将散点图附加到特定的幻灯片。
- 通过 chartdata.get().setvalue() 方法设置图表数据。
- 使用 ichart 接口提供的方法设置图表标题、坐标轴标题、系列标签等。
- 设置网格线样式和数据点线样式。
- 使用 presentation.savetofile() 方法将文档保存到指定路径。
java代码示例
import com.spire.presentation.fileformat; import com.spire.presentation.presentation; import com.spire.presentation.slidesizetype; import com.spire.presentation.textlinestyle; import com.spire.presentation.charts.charttype; import com.spire.presentation.charts.ichart; import com.spire.presentation.charts.entity.chartdatalabel; import com.spire.presentation.drawing.fillformattype; import java.awt.*; import java.awt.geom.rectangle2d; public class scatterchart { public static void main(string[] args) throws exception{ //创建presentation类的实例 presentation presentation = new presentation(); presentation.getslidesize().settype(slidesizetype.screen_16_x_9); //添加散点图表到第一张幻灯片 ichart chart = presentation.getslides().get(0).getshapes().appendchart(charttype.scatter_markers,new rectangle2d.float(180, 80, 550, 320),false); //设置图表标题 chart.getcharttitle().gettextproperties().settext("散点图表"); chart.getcharttitle().gettextproperties().iscentered(true); chart.getcharttitle().setheight(20f); chart.hastitle(true); //设置图表数据源 double[] xdata = new double[] { 1.0, 2.4, 5.0, 8.9 }; double[] ydata = new double[] { 5.3, 15.2, 6.7, 8.0 }; chart.getchartdata().get(0,0).settext("x-值"); chart.getchartdata().get(0,1).settext("y-值"); for (int i = 0; i < xdata.length; i++) { chart.getchartdata().get(i+1,0).setvalue(xdata[i]); chart.getchartdata().get(i+1,1).setvalue(ydata[i]); } //设置系列标签 chart.getseries().setserieslabel(chart.getchartdata().get("b1","b1")); //设置x和y轴值 chart.getseries().get(0).setxvalues(chart.getchartdata().get("a2","a5")); chart.getseries().get(0).setyvalues(chart.getchartdata().get("b2","b5")); //添加数据标签 for (int i = 0; i < 4; i++) { chartdatalabel datalabel = chart.getseries().get(0).getdatalabels().add(); datalabel.setlabelvaluevisible(true); } //设置主轴标题和次轴标题 chart.getprimaryvalueaxis().hastitle(true); chart.getprimaryvalueaxis().gettitle().gettextproperties().settext("x-轴 标题"); chart.getsecondaryvalueaxis().hastitle(true); chart.getsecondaryvalueaxis().gettitle().gettextproperties().settext("y-轴 标题"); //设置网格线 chart.getsecondaryvalueaxis().getmajorgridtextlines().setfilltype(fillformattype.solid); chart.getsecondaryvalueaxis().getmajorgridtextlines().setstyle(textlinestyle.thin_thin); chart.getsecondaryvalueaxis().getmajorgridtextlines().getsolidfillcolor().setcolor(color.gray); chart.getprimaryvalueaxis().getmajorgridtextlines().setfilltype(fillformattype.none); //设置数据点线 chart.getseries().get(0).getline().setfilltype(fillformattype.solid); chart.getseries().get(0).getline().setwidth(0.1f); chart.getseries().get(0).getline().getsolidfillcolor().setcolor(color.blue); //保存文档 presentation.savetofile("scatterchart.pptx", fileformat.pptx_2013); presentation.dispose(); } }
图表效果图:
其他注意事项
本次代码中的ppt结果文档路径为idea程序项目文件夹路径,如f:\ideaproject\chart_ppt\scatterchart.pptx ,路径也可以自定义。
到此这篇关于java 在ppt中创建散点图的实现示例的文章就介绍到这了,更多相关java ppt创建散点图内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!