91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Java在PowerPoint幻燈片中怎么創建散點圖

發布時間:2023-05-06 11:25:26 來源:億速云 閱讀:113 作者:iii 欄目:開發技術

這篇文章主要介紹“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>

創建散點圖

下面是創建散點圖的具體方法和步驟:

  • 創建 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, 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幻燈片中怎么創建散點圖”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

海阳市| 广汉市| 攀枝花市| 阳朔县| 福贡县| 施甸县| 五指山市| 山西省| 房产| 宜阳县| 苏尼特右旗| 宜城市| 和静县| 龙门县| 共和县| 阳原县| 明光市| 古田县| 徐闻县| 苍梧县| 临沂市| 封开县| 泌阳县| 宁阳县| 泰安市| 锦州市| 丹东市| 哈密市| 东兰县| 全南县| 香港| 奉化市| 兰坪| 乐山市| 无锡市| 延安市| 梁平县| 新宾| 潜山县| 通海县| 酉阳|