Java スライドでレーダーチャートを作成する
Java スライドでレーダーチャートを作成する方法の紹介
このチュートリアルでは、Aspose.Slides for Java API を使用してレーダー チャートを作成する手順を説明します。レーダー チャートは、データを円形パターンで視覚化するのに役立ち、複数のデータ シリーズを簡単に比較できます。Java ソース コードとともに、ステップ バイ ステップの手順を説明します。
前提条件
始める前に、Aspose.Slides for Javaライブラリがプロジェクトに統合されていることを確認してください。ライブラリは以下からダウンロードできます。 ここ .
ステップ1: プレゼンテーションの設定
まず、新しい PowerPoint プレゼンテーションを設定し、それにスライドを追加してみましょう。
String outPath = "Your Output Directory" + File.separator + "RadarChart_Out.pptx";
Presentation pres = new Presentation();
ステップ2: レーダーチャートを追加する
次に、スライドにレーダー チャートを追加します。チャートの位置と寸法を指定します。
ISlide sld = pres.getSlides().get_Item(0);
IChart ichart = sld.getShapes().addChart(ChartType.Radar, 0, 0, 400, 400);
ステップ3: チャートデータの設定
次に、グラフ データを設定します。これには、データ ワークブックの作成、カテゴリの追加、シリーズの追加が含まれます。
int defaultWorksheetIndex = 0;
IChartDataWorkbook fact = ichart.getChartData().getChartDataWorkbook();
//グラフのタイトルを設定する
ichart.getChartTitle().addTextFrameForOverriding("Radar Chart");
//デフォルトで生成されたシリーズとカテゴリを削除する
ichart.getChartData().getCategories().clear();
ichart.getChartData().getSeries().clear();
//新しいカテゴリーの追加
ichart.getChartData().getCategories().add(fact.getCell(defaultWorksheetIndex, 1, 0, "Category 1"));
ichart.getChartData().getCategories().add(fact.getCell(defaultWorksheetIndex, 2, 0, "Category 3"));
ichart.getChartData().getCategories().add(fact.getCell(defaultWorksheetIndex, 3, 0, "Category 5"));
ichart.getChartData().getCategories().add(fact.getCell(defaultWorksheetIndex, 4, 0, "Category 7"));
ichart.getChartData().getCategories().add(fact.getCell(defaultWorksheetIndex, 5, 0, "Category 9"));
ichart.getChartData().getCategories().add(fact.getCell(defaultWorksheetIndex, 6, 0, "Category 11"));
//新しいシリーズの追加
ichart.getChartData().getSeries().add(fact.getCell(defaultWorksheetIndex, 0, 1, "Series 1"), ichart.getType());
ichart.getChartData().getSeries().add(fact.getCell(defaultWorksheetIndex, 0, 2, "Series 2"), ichart.getType());
ステップ4: シリーズデータを入力する
ここで、レーダー チャートの系列データを入力します。
//シリーズ1のシリーズデータを入力する
IChartSeries series = ichart.getChartData().getSeries().get_Item(0);
series.getDataPoints().addDataPointForRadarSeries(fact.getCell(defaultWorksheetIndex, 1, 1, 2.7));
series.getDataPoints().addDataPointForRadarSeries(fact.getCell(defaultWorksheetIndex, 2, 1, 2.4));
series.getDataPoints().addDataPointForRadarSeries(fact.getCell(defaultWorksheetIndex, 3, 1, 1.5));
series.getDataPoints().addDataPointForRadarSeries(fact.getCell(defaultWorksheetIndex, 4, 1, 3.5));
series.getDataPoints().addDataPointForRadarSeries(fact.getCell(defaultWorksheetIndex, 5, 1, 5));
series.getDataPoints().addDataPointForRadarSeries(fact.getCell(defaultWorksheetIndex, 6, 1, 3.5));
//シリーズの色を設定する
series.getFormat().getLine().getFillFormat().setFillType(FillType.Solid);
series.getFormat().getLine().getFillFormat().getSolidFillColor().setColor(Color.RED);
//シリーズ2のシリーズデータを入力する
series = ichart.getChartData().getSeries().get_Item(1);
series.getDataPoints().addDataPointForRadarSeries(fact.getCell(defaultWorksheetIndex, 1, 2, 2.5));
series.getDataPoints().addDataPointForRadarSeries(fact.getCell(defaultWorksheetIndex, 2, 2, 2.4));
series.getDataPoints().addDataPointForRadarSeries(fact.getCell(defaultWorksheetIndex, 3, 2, 1.6));
series.getDataPoints().addDataPointForRadarSeries(fact.getCell(defaultWorksheetIndex, 4, 2, 3.5));
series.getDataPoints().addDataPointForRadarSeries(fact.getCell(defaultWorksheetIndex, 5, 2, 4));
series.getDataPoints().addDataPointForRadarSeries(fact.getCell(defaultWorksheetIndex, 6, 2, 3.6));
//シリーズの色を設定する
series.getFormat().getLine().getFillFormat().setFillType(FillType.Solid);
series.getFormat().getLine().getFillFormat().getSolidFillColor().setColor(Color.ORANGE);
ステップ5: 軸と凡例のカスタマイズ
レーダー チャートの軸と凡例をカスタマイズしましょう。
//凡例の位置を設定する
ichart.getLegend().setPosition(LegendPositionType.Bottom);
//カテゴリ軸テキストプロパティの設定
IChartPortionFormat txtCat = ichart.getAxes().getHorizontalAxis().getTextFormat().getPortionFormat();
txtCat.setFontBold(NullableBool.True);
txtCat.setFontHeight(10);
txtCat.getFillFormat().setFillType(FillType.Solid);
txtCat.getFillFormat().getSolidFillColor().setColor(new Color(PresetColor.DimGray));
txtCat.setLatinFont(new FontData("Calibri"));
//凡例テキストプロパティの設定
IChartPortionFormat txtleg = ichart.getLegend().getTextFormat().getPortionFormat();
txtleg.setFontBold(NullableBool.True);
txtleg.setFontHeight(10);
txtleg.getFillFormat().setFillType(FillType.Solid);
txtleg.getFillFormat().getSolidFillColor().setColor(new Color(PresetColor.DimGray));
txtleg.setLatinFont(new FontData("Calibri"));
//値軸テキストプロパティの設定
IChartPortionFormat txtVal = ichart.getAxes().getVerticalAxis().getTextFormat().getPortionFormat();
txtVal.setFontBold(NullableBool.True);
txtVal.setFontHeight(10);
txtVal.getFillFormat().setFillType(FillType.Solid);
txtVal.getFillFormat().getSolidFillColor().setColor(new Color(PresetColor.DimGray));
txtVal.setLatinFont(new FontData("Calibri"));
//値軸の数値形式の設定
ichart.getAxes().getVerticalAxis().setNumberFormatLinkedToSource(false);
ichart.getAxes().getVerticalAxis().setNumberFormat("\"$\"#,##0.00");
//設定チャート主要単位値
ichart.getAxes().getVerticalAxis().setAutomaticMajorUnit(false);
ichart.getAxes().getVerticalAxis().setMajorUnit(1.25f);
ステップ6: プレゼンテーションを保存する
最後に、生成されたプレゼンテーションをレーダーチャートとともに保存します。
.
pres.save(outPath, SaveFormat.Pptx);
これで完了です。Aspose.Slides for Java を使用して、PowerPoint プレゼンテーションにレーダー チャートを作成することができました。この例をさらにカスタマイズして、特定のニーズに合わせることができます。
Java スライドでレーダー チャートを作成するための完全なソース コード
String outPath = "Your Output Directory" + File.separator + "RadarChart_Out.pptx";
Presentation pres = new Presentation();
try
{
//最初のスライドにアクセス
ISlide sld = pres.getSlides().get_Item(0);
//レーダーチャートを追加
IChart ichart = sld.getShapes().addChart(ChartType.Radar, 0, 0, 400, 400);
//チャートデータシートのインデックスの設定
int defaultWorksheetIndex = 0;
//チャートデータの取得ワークシート
IChartDataWorkbook fact = ichart.getChartData().getChartDataWorkbook();
//グラフのタイトルを設定する
ichart.getChartTitle().addTextFrameForOverriding("Radar Chart");
//デフォルトで生成されたシリーズとカテゴリを削除する
ichart.getChartData().getCategories().clear();
ichart.getChartData().getSeries().clear();
//新しいカテゴリーの追加
ichart.getChartData().getCategories().add(fact.getCell(defaultWorksheetIndex, 1, 0, "Caetegoty 1"));
ichart.getChartData().getCategories().add(fact.getCell(defaultWorksheetIndex, 2, 0, "Caetegoty 3"));
ichart.getChartData().getCategories().add(fact.getCell(defaultWorksheetIndex, 3, 0, "Caetegoty 5"));
ichart.getChartData().getCategories().add(fact.getCell(defaultWorksheetIndex, 4, 0, "Caetegoty 7"));
ichart.getChartData().getCategories().add(fact.getCell(defaultWorksheetIndex, 5, 0, "Caetegoty 9"));
ichart.getChartData().getCategories().add(fact.getCell(defaultWorksheetIndex, 6, 0, "Caetegoty 11"));
//新しいシリーズの追加
ichart.getChartData().getSeries().add(fact.getCell(defaultWorksheetIndex, 0, 1, "Series 1"), ichart.getType());
ichart.getChartData().getSeries().add(fact.getCell(defaultWorksheetIndex, 0, 2, "Series 2"), ichart.getType());
//シリーズデータを入力中
IChartSeries series = ichart.getChartData().getSeries().get_Item(0);
series.getDataPoints().addDataPointForRadarSeries(fact.getCell(defaultWorksheetIndex, 1, 1, 2.7));
series.getDataPoints().addDataPointForRadarSeries(fact.getCell(defaultWorksheetIndex, 2, 1, 2.4));
series.getDataPoints().addDataPointForRadarSeries(fact.getCell(defaultWorksheetIndex, 3, 1, 1.5));
series.getDataPoints().addDataPointForRadarSeries(fact.getCell(defaultWorksheetIndex, 4, 1, 3.5));
series.getDataPoints().addDataPointForRadarSeries(fact.getCell(defaultWorksheetIndex, 5, 1, 5));
series.getDataPoints().addDataPointForRadarSeries(fact.getCell(defaultWorksheetIndex, 6, 1, 3.5));
//シリーズの色を設定する
series.getFormat().getLine().getFillFormat().setFillType(FillType.Solid);
series.getFormat().getLine().getFillFormat().getSolidFillColor().setColor(Color.RED);
//別のシリーズデータを入力しています
series = ichart.getChartData().getSeries().get_Item(1);
series.getDataPoints().addDataPointForRadarSeries(fact.getCell(defaultWorksheetIndex, 1, 2, 2.5));
series.getDataPoints().addDataPointForRadarSeries(fact.getCell(defaultWorksheetIndex, 2, 2, 2.4));
series.getDataPoints().addDataPointForRadarSeries(fact.getCell(defaultWorksheetIndex, 3, 2, 1.6));
series.getDataPoints().addDataPointForRadarSeries(fact.getCell(defaultWorksheetIndex, 4, 2, 3.5));
series.getDataPoints().addDataPointForRadarSeries(fact.getCell(defaultWorksheetIndex, 5, 2, 4));
series.getDataPoints().addDataPointForRadarSeries(fact.getCell(defaultWorksheetIndex, 6, 2, 3.6));
//シリーズの色を設定する
series.getFormat().getLine().getFillFormat().setFillType(FillType.Solid);
series.getFormat().getLine().getFillFormat().getSolidFillColor().setColor(Color.ORANGE);
//凡例の位置を設定する
ichart.getLegend().setPosition(LegendPositionType.Bottom);
//カテゴリ軸テキストプロパティの設定
IChartPortionFormat txtCat = ichart.getAxes().getHorizontalAxis().getTextFormat().getPortionFormat();
txtCat.setFontBold(NullableBool.True);
txtCat.setFontHeight(10);
txtCat.getFillFormat().setFillType(FillType.Solid);
txtCat.getFillFormat().getSolidFillColor().setColor(new Color(PresetColor.DimGray));
txtCat.setLatinFont(new FontData("Calibri"));
//凡例テキストプロパティの設定
IChartPortionFormat txtleg = ichart.getLegend().getTextFormat().getPortionFormat();
txtleg.setFontBold(NullableBool.True);
txtleg.setFontHeight(10);
txtleg.getFillFormat().setFillType(FillType.Solid);
txtleg.getFillFormat().getSolidFillColor().setColor(new Color(PresetColor.DimGray));
txtCat.setLatinFont(new FontData("Calibri"));
//値軸テキストプロパティの設定
IChartPortionFormat txtVal = ichart.getAxes().getVerticalAxis().getTextFormat().getPortionFormat();
txtVal.setFontBold(NullableBool.True);
txtVal.setFontHeight(10);
txtVal.getFillFormat().setFillType(FillType.Solid);
txtVal.getFillFormat().getSolidFillColor().setColor(new Color(PresetColor.DimGray));
txtVal.setLatinFont(new FontData("Calibri"));
//値軸の数値形式の設定
ichart.getAxes().getVerticalAxis().setNumberFormatLinkedToSource(false);
ichart.getAxes().getVerticalAxis().setNumberFormat("\"$\"#,##0.00");
//設定チャート主要単位値
ichart.getAxes().getVerticalAxis().setAutomaticMajorUnit(false);
ichart.getAxes().getVerticalAxis().setMajorUnit(1.25f);
//生成されたプレゼンテーションを保存する
pres.save(outPath, SaveFormat.Pptx);
}
finally
{
if (pres != null) pres.dispose();
}
結論
このチュートリアルでは、Aspose.Slides for Java を使用して PowerPoint プレゼンテーションでレーダー チャートを作成する方法を学習しました。これらの概念を適用して、Java アプリケーションでデータを効果的に視覚化して表示できます。
よくある質問
グラフのタイトルを変更するにはどうすればよいですか?
グラフのタイトルを変更するには、次の行を変更します。
ichart.getChartTitle().addTextFrameForOverriding("Radar Chart");
レーダーチャートにさらにデータ系列を追加できますか?
はい、追加するシリーズごとに「手順 3」と「手順 4」の手順に従って、さらにデータ シリーズを追加できます。
グラフの色をカスタマイズするにはどうすればよいですか?
設定する線を変更することでシリーズの色をカスタマイズできます。SolidFillColor
各シリーズのプロパティ。例:
series.getFormat().getLine().getFillFormat().getSolidFillColor().setColor(Color.RED);
軸ラベルと書式を変更するにはどうすればよいですか?
軸ラベルとフォント サイズや色などの書式をカスタマイズするには、「手順 5」を参照してください。
チャートを別のファイル形式で保存するにはどうすればよいですか?
出力形式を変更するには、ファイル拡張子を変更します。outPath
変数と適切なSaveFormat
たとえば、PDFとして保存するには、SaveFormat.Pdf
.