ODSファイルからチャートサブタイトルを読む
Contents
[
Hide
]
ODSファイルからチャートサブタイトルを読む
Aspose.Cellsは、Chart.SubTitleプロパティを使用してODSファイル内のチャートのサブタイトルを読み取る機能を提供します。次のサンプルコードでは、サンプルODSファイルをロードし、Chart.SubTitleプロパティを使用してチャートのサブタイトルを読み取り、それをコンソールウィンドウに出力します。参照のために、以下のコードのコンソール出力をご覧ください。
サンプルコード
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java | |
// The path to the documents directory. | |
String dataDir = Utils.getSharedDataDir(GetChartSubTitleForODSFile.class) + "Charts/"; | |
String filePath = dataDir + "SampleChart.ods"; | |
Workbook workbook = new Workbook(filePath); | |
Worksheet worksheet = workbook.getWorksheets().get(0); | |
// Load the chart from source worksheet | |
Chart chart = worksheet.getCharts().get(0); | |
System.out.println("Chart Subtitle: " + chart.getSubTitle().getText()); |
コンソール出力
Chart Subtitle: Sample Chart Subtitle