Java PowerPoint에서 그래프에 추세선 추가

PowerPoint에서 다양한 그래프를 만들 수 있습니다. 오늘은 Spire.Presentation for Java를 사용하여 트렌드 그래프를 만드는 방법을 소개합니다. 그래프에 추세선을 추가하면 시각적 데이터의 추세를 나타낼 수 있습니다.

아래 준비



1.E-iceblue 공식 사이트에서 Free Spire. Presentation for Java 무료 버전을 다운로드합니다.



2. IDE를 시작하여 새 프로젝트를 만든 다음 설치된 파일에 있던 적절한 Spire.Presentation.jar을 참조에 추가합니다.


import com.spire.presentation.FileFormat;
import com.spire.presentation.ISlide;
import com.spire.presentation.Presentation;
import com.spire.presentation.charts.IChart;
import com.spire.presentation.charts.ITrendlines;
import com.spire.presentation.charts.TrendlineSimpleType;

public class AddTrendlineToChart {
    public static void main(String[] args) throws Exception {
        //Presentation objectを作成します。
        Presentation ppt = new Presentation();

        //PowerPointファイルをロードします。
        ppt.loadFromFile("Chart.pptx");

        //スライドを取得します。
        ISlide slide = ppt.getSlides().get(0);
        //スライドのチャートを取得します。
        IChart chart = (IChart)slide.getShapes().get(0);

        //チャートに傾向線を追加します。
        ITrendlines trendLine = chart.getSeries().get(0).addTrendLine(TrendlineSimpleType.LINEAR);
        //公式を非表示にします。
        //trendLine.setdisplayEquation(false);
        //Rの平方值を非表示にします。
        //trendLine.setdisplayRSquaredValue(false);

        //保存します。
        ppt.saveToFile("AddTrendline.pptx", FileFormat.PPTX_2013);
    }
}

실행 결과





 

좋은 웹페이지 즐겨찾기