Java 新增、讀取、刪除Excel中的圖表趨勢線

iceblue發表於2020-11-23

本文以Java示例介紹如何在Excel中新增趨勢線,以及讀取趨勢線公式。通過文中的方法可支援新增6種不同型別的趨勢線,包括Linear、Exponential、Logarithmic、Moving Average、Polynomial、Power等;讀取趨勢線時可讀取趨勢線型別、名稱、公式等。

程式碼程式環境要求:

  • Spire.xls.jar(這裡用免費版的就可以了)
  • Jdk 1.8.0 (jdk版本要求1.6.0及以上就可以)
  • IDEA

其中,jard匯入可參考如下兩種方法(任選其一):

1. 下載免費版jar包Free Spire.XLS for Java,手動匯入jar到Java程式。Jar檔案在解壓檔案中的lib資料夾下獲取。

2.  Maven程式中,通過配置pom.xml檔案,指定maven倉庫路徑及spire.xls.free的依賴(同時注意版本號是否正確),如下:

<repositories>
    <repository>
        <id>com.e-iceblue</id>
        <url>http://repo.e-iceblue.cn/repository/maven-public/</url>
     </repository>
</repositories>
<dependencies>
<dependency>
        <groupId>e-iceblue</groupId>
  <artifactId>spire.xls.free</artifactId>
  <version>3.9.1</version>
</dependency>
</dependencies>

完成配置後,匯入jar到程式。

Eclipse中匯入jar步驟略有不同,具體可參考教程

jar匯入效果:

 

 

Java 程式碼示例

1. 新增趨勢線

import com.spire.xls.*;
import com.spire.xls.core.IChartTrendLine;

import java.awt.*;

public class AddTrendlineToChart {
    public static void main(String[] args) {
        //載入Excel文件
        Workbook wb = new Workbook();
        wb.loadFromFile("test.xlsx");

        //獲取第一個工作表中的第一個圖表
        Chart chart0 = wb.getWorksheets().get(0).getCharts().get(0);

        //給圖表的第一個資料系列新增趨勢線(支援Linear、Exponential、Logarithmic、Moving_Average、Polynomial、Power等6種型別)
        IChartTrendLine trendLine0 = chart0.getSeries().get(0).getTrendLines().add(TrendLineType.Linear);
        trendLine0.setName("Linear(Series1)");//趨勢線的名稱
        trendLine0.getBorder().setPattern(ChartLinePatternType.DashDot);//趨勢線的線條型別
        trendLine0.getBorder().setColor(new Color(255,69,0));//趨勢線的線條顏色
        trendLine0.setForward(0.5);//趨勢線向前和向後延伸的單位數
        trendLine0.setBackward(0.5);
        trendLine0.setIntercept(5);//趨勢線的截距
        trendLine0.setDisplayEquation(true);//顯示公式
        trendLine0.setDisplayRSquared(true);//顯示R平方值

        //儲存文件
        wb.saveToFile("AddTrendline.xlsx", ExcelVersion.Version2013);
        wb.dispose();
    }
}

趨勢線新增效果:

 

2. 讀取趨勢線

import com.spire.xls.*;
import com.spire.xls.core.IChartTrendLine;

public class ReadTrendline {
    public static void main(String[] args) {
        //載入Excel文件
        Workbook workbook = new Workbook();
        workbook.loadFromFile("AddTrendline.xlsx");

        //獲取第一個工作表中的第一個圖表
        Chart chart = workbook.getWorksheets().get(0).getCharts().get(0);

        //獲取圖表的第一個資料系列的趨勢線
        IChartTrendLine trendLine = chart.getSeries().get(0).getTrendLines().get(0);
        String type = trendLine.getType().toString();
        String name = trendLine.getName();
        String equation = trendLine.getFormula();
        System.out.println("趨勢線型別: "+ type + "\n"
                + "趨勢線名稱:" + name + "\n"
                + "趨勢線公式:" + equation);
    }
}

趨勢線讀取結果:

 

3. 刪除圖表中的趨勢線

import com.spire.xls.*;

public class RemoveTrendline {
    public static void main(String[] args) {
        //載入Excel文件
        Workbook workbook = new Workbook();
        workbook.loadFromFile("AddTrendline.xlsx");

        //獲取第一個工作表中的第一個圖表
        Chart chart = workbook.getWorksheets().get(0).getCharts().get(0);

        //刪除圖表中的趨勢線
        chart.getSeries().get(0).getTrendLines().removeAt(0);

        //儲存文件
        workbook.saveToFile("result.xlsx",FileFormat.Version2013);
        workbook.dispose();
    }
}

趨勢線刪除結果:

 

相關文章