Java PowerPointでグラフにデータラベルを追加
データラベルによって、データ系列またはその個々のデータポイントに関する詳細情報が表示されるので、グラフが理解しやすくなります。今回はSpire.Presentation for Javaを使ってPowerPointでグラフにデータラベルを追加する方法を説明します。
下準備
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.entity.ChartDataLabel;
import com.spire.presentation.charts.entity.ChartSeriesDataFormat;
import com.spire.presentation.drawing.FillFormatType;
import java.awt.*;
public class AddDataLabelsToChart {
public static void main(String[] args) throws Exception {
//PowerPointをロードします。
Presentation ppt = new Presentation();
ppt.loadFromFile("Chart.pptx");
//スライドを取得します。
ISlide slide = ppt.getSlides().get(0);
//チャートを取得します。
IChart chart = (IChart)slide.getShapes().get(0);
//グラフの系列を取得します。
for (ChartSeriesDataFormat series:(Iterable)chart.getSeries()
) {
//各系列にデータラベルをつけます。
for(int i = 0; i < 4; i++){
ChartDataLabel dataLabel = series.getDataLabels().add();
//ラベルの値を表示します。
dataLabel.setLabelValueVisible(true);
//ラベルの系列を表示します。
dataLabel.setSeriesNameVisible(true);
//ラベルの枠を設定します。
dataLabel.getLine().setFillType(FillFormatType.SOLID);
dataLabel.getLine().getSolidFillColor().setColor(Color.RED);
//ラベルの塗りつぶしを設定します。
dataLabel.getFill().setFillType(FillFormatType.SOLID);
dataLabel.getFill().getSolidColor().setColor(Color.YELLOW);
}
}
//保存します。
ppt.saveToFile("DataLabels.pptx", FileFormat.PPTX_2013);
}
}
実行結果
Author And Source
この問題について(Java PowerPointでグラフにデータラベルを追加), 我々は、より多くの情報をここで見つけました https://qiita.com/iceblue/items/24dc06fa51531e47b445著者帰属:元の著者の情報は、元の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 .