Java 在PPT中创建散点图的实现示例

本文将以Java代码示例展示如何在PPT幻灯片中创建散点图表。文中通过示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文将以Java代码示例展示如何在PPT幻灯片中创建散点图表。

创建图表前

需要在Java程序中导入用于操作PPT的jar包 Free Spire.Presentation for Java。可参考如下两种方法导入:

方法1:手动导入jar包。需下载jar包到本地,并解压,找到lib文件夹下的jar文件。然后按照如下步骤执行,导入:

方法2:maven仓库下载导入。需在pom.xml文件中配置maven仓库路径,并指定依赖。配置内容如下:

   com.e-icebluehttps://repo.e-iceblue.cn/repository/maven-public/   e-iceblue spire.presentation.free3.9.0

创建图表时

通过指定数据源,并在幻灯片中的指定坐标位置插入图表。该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 

图表效果图:

其他注意事项

本次代码中的PPT结果文档路径为IDEA程序项目文件夹路径,如F:\IDEAProject\Chart_PPT\ScatterChart.pptx ,路径也可以自定义。

到此这篇关于Java 在PPT中创建散点图的实现示例的文章就介绍到这了,更多相关Java PPT创建散点图内容请搜索0133技术站以前的文章或继续浏览下面的相关文章希望大家以后多多支持0133技术站!

以上就是Java 在PPT中创建散点图的实现示例的详细内容,更多请关注0133技术站其它相关文章!

赞(0) 打赏
未经允许不得转载:0133技术站首页 » Java