Java:如何在PowerPoint幻灯片中创建散点图

打印 上一主题 下一主题

主题 953|帖子 953|积分 2859

散点图是通过两组数据构成多个坐标点,考察坐标点的分布,判断两变量之间是否存在某种关联或总结坐标点的分布模式。散点图将序列显示为一组点,值由点在图表中的位置表示,类别由图表中的不同标记表示,通常用于比较跨类别的聚合数据。本文将为您介如何通过Java代码在PowerPoint幻灯片中创建散点图。以下是我整理的具体方法及思路,并附上Java代码供大家参考。
代码编译环境:

IntelliJ IDEA 2018(jdk 1.8.0)
Presentation Jar包:Free Spire.Presentation for Java 5.1.0
引入jar

导入方法1:
手动引入。将Free Spire. Presentation for Java下载到本地,解压,找到lib文件夹下的Spire. Presentation.jar文件。在IDEA中打开如下界面,将本地路径中的jar文件引入Java程序:
 
导入方法2:如果您想通过 Maven安装,则可以在 pom.xml 文件中添加以下代码导入 JAR 文件。
  1. <repositories>
  2.     <repository>
  3.         <id>com.e-iceblue</id>
  4.         <name>e-iceblue</name>
  5.         <url>https://repo.e-iceblue.cn/repository/maven-public/</url>
  6.     </repository>
  7. </repositories>
  8. <dependencies>
  9.     <dependency>
  10.         <groupId>e-iceblue</groupId>
  11.         <artifactId>spire.presentation.free</artifactId>
  12.         <version>5.1.0</version>
  13.     </dependency>
  14. </dependencies>
复制代码
创建散点图

下面是创建散点图的具体方法和步骤:

  • 创建 Presentation 类的实例。
  • 使用 ShapeCollection.appendChart() 方法将散点图附加到特定的幻灯片。
  • 通过 ChartData.get().setValue() 方法设置图表数据。
  • 使用 IChart 接口提供的方法设置图表标题、坐标轴标题、系列标签等。
  • 设置网格线样式和数据点线样式。
  • 使用 Presentation.saveToFile() 方法将文档保存到指定路径。
完整代码

Java
  1. import com.spire.presentation.FileFormat;
  2. import com.spire.presentation.Presentation;
  3. import com.spire.presentation.SlideSizeType;
  4. import com.spire.presentation.TextLineStyle;
  5. import com.spire.presentation.charts.ChartType;
  6. import com.spire.presentation.charts.IChart;
  7. import com.spire.presentation.charts.entity.ChartDataLabel;
  8. import com.spire.presentation.drawing.FillFormatType;
  9. import java.awt.*;
  10. import java.awt.geom.Rectangle2D;
  11. public class ScatterChart {
  12.     public static void main(String[] args) throws Exception{
  13.         //创建Presentation类的实例
  14.         Presentation presentation = new Presentation();
  15.         presentation.getSlideSize().setType(SlideSizeType.SCREEN_16_X_9);
  16.         //添加散点图表到第一张幻灯片
  17.         IChart chart = presentation.getSlides().get(0).getShapes().appendChart(ChartType.SCATTER_MARKERS,new Rectangle2D.Float(180, 80, 550, 320),false);
  18.         //设置图表标题
  19.         chart.getChartTitle().getTextProperties().setText("散点图表");
  20.         chart.getChartTitle().getTextProperties().isCentered(true);
  21.         chart.getChartTitle().setHeight(20f);
  22.         chart.hasTitle(true);
  23.         //设置图表数据源
  24.         Double[] xData = new Double[] { 1.0, 3.4, 5.0, 7.9 };
  25.         Double[] yData = new Double[] { 4.3, 13.2, 7.7, 6.0 };
  26.         chart.getChartData().get(0,0).setText("X-值");
  27.         chart.getChartData().get(0,1).setText("Y-值");
  28.         for (int i = 0; i < xData.length; i++) {
  29.             chart.getChartData().get(i+1,0).setValue(xData[i]);
  30.             chart.getChartData().get(i+1,1).setValue(yData[i]);
  31.         }
  32.         //设置系列标签
  33.         chart.getSeries().setSeriesLabel(chart.getChartData().get("B1","B1"));
  34.         //设置X和Y轴值
  35.         chart.getSeries().get(0).setXValues(chart.getChartData().get("A2","A5"));
  36.         chart.getSeries().get(0).setYValues(chart.getChartData().get("B2","B5"));
  37.         //添加数据标签
  38.         for (int i = 0; i < 4; i++)
  39.         {
  40.             ChartDataLabel dataLabel = chart.getSeries().get(0).getDataLabels().add();
  41.             dataLabel.setLabelValueVisible(true);
  42.         }
  43.         //设置主轴标题和次轴标题
  44.         chart.getPrimaryValueAxis().hasTitle(true);
  45.         chart.getPrimaryValueAxis().getTitle().getTextProperties().setText("X-轴 标题");
  46.         chart.getSecondaryValueAxis().hasTitle(true);
  47.         chart.getSecondaryValueAxis().getTitle().getTextProperties().setText("Y-轴 标题");
  48.         //设置网格线
  49.         chart.getSecondaryValueAxis().getMajorGridTextLines().setFillType(FillFormatType.SOLID);
  50.         chart.getSecondaryValueAxis().getMajorGridTextLines().setStyle(TextLineStyle.THIN_THIN);
  51.         chart.getSecondaryValueAxis().getMajorGridTextLines().getSolidFillColor().setColor(Color.GRAY);
  52.         chart.getPrimaryValueAxis().getMajorGridTextLines().setFillType(FillFormatType.NONE);
  53.         //设置数据点线
  54.         chart.getSeries().get(0).getLine().setFillType(FillFormatType.SOLID);
  55.         chart.getSeries().get(0).getLine().setWidth(0.1f);
  56.         chart.getSeries().get(0).getLine().getSolidFillColor().setColor(Color.GREEN);
  57.         //保存文档
  58.         presentation.saveToFile("ScatterChart.pptx", FileFormat.PPTX_2013);
  59.         presentation.dispose();
  60.     }
  61. }
复制代码
效果图


—本文完—

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

瑞星

金牌会员
这个人很懒什么都没写!
快速回复 返回顶部 返回列表