文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Java在PowerPoint幻灯片中怎么创建散点图

2023-07-05 19:46

关注

这篇文章主要介绍“Java在PowerPoint幻灯片中怎么创建散点图”,在日常操作中,相信很多人在Java在PowerPoint幻灯片中怎么创建散点图问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”Java在PowerPoint幻灯片中怎么创建散点图”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

散点图是通过两组数据构成多个坐标点,考察坐标点的分布,判断两变量之间是否存在某种关联或总结坐标点的分布模式。散点图将序列显示为一组点,值由点在图表中的位置表示,类别由图表中的不同标记表示,通常用于比较跨类别的聚合数据。

代码编译环境:

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程序:

Java在PowerPoint幻灯片中怎么创建散点图

导入方法2:如果您想通过 Maven安装,则可以在 pom.xml 文件中添加以下代码导入 JAR 文件。

<repositories>    <repository>        <id>com.e-iceblue</id>        <name>e-iceblue</name>        <url>https://repo.e-iceblue.cn/repository/maven-public/</url>    </repository></repositories><dependencies>    <dependency>        <groupId>e-iceblue</groupId>        <artifactId>spire.presentation.free</artifactId>        <version>5.1.0</version>    </dependency></dependencies>

创建散点图

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

完整代码

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, 3.4, 5.0, 7.9 };        Double[] yData = new Double[] { 4.3, 13.2, 7.7, 6.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.GREEN);        //保存文档        presentation.saveToFile("ScatterChart.pptx", FileFormat.PPTX_2013);        presentation.dispose();    }}

效果图

Java在PowerPoint幻灯片中怎么创建散点图

到此,关于“Java在PowerPoint幻灯片中怎么创建散点图”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注编程网网站,小编会继续努力为大家带来更多实用的文章!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯