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);
}
}
実行結果
Author And Source
この問題について(Java PowerPointでグラフに傾向線を追加), 我々は、より多くの情報をここで見つけました https://qiita.com/iceblue/items/93b9b84de4090b27102c著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .