チャートのトレンドラインの方程式テキストを取得する
Contents
[
Hide
]
Aspose.Cellsを使用して、チャートのトレンドラインの方程式テキストを取得できます。Aspose.Cellsは、チャートのトレンドラインの方程式テキストを返すTrendline.DataLabels.Textプロパティを提供しています。このプロパティを利用するには、まずChart.Calculate()メソッドを呼び出す必要があります。
以下のスクリーンショットは、トレンドライン付きのチャートとその方程式テキストが赤色で表示されています。以下のサンプルコードでは、Trendline.DataLabels.Textプロパティを使用してこのテキストを取得します。
チャートのトレンドラインの方程式テキストを取得するC#コード
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-.NET | |
// The path to the documents directory. | |
string dataDir = RunExamples.GetDataDir(System.Reflection.MethodBase.GetCurrentMethod().DeclaringType); | |
// Create workbook object from source Excel file | |
Workbook workbook = new Workbook(dataDir + "source.xlsx"); | |
// Access the first worksheet | |
Worksheet worksheet = workbook.Worksheets[0]; | |
// Access the first chart inside the worksheet | |
Chart chart = worksheet.Charts[0]; | |
// Calculate the Chart first to get the Equation Text of Trendline | |
chart.Calculate(); | |
// Access the Trendline | |
Trendline trendLine = chart.NSeries[0].TrendLines[0]; | |
// Read the Equation Text of Trendline | |
Console.WriteLine("Equation Text: " + trendLine.DataLabels.Text); |
サンプルコードによって生成された出力
これは上記のサンプルコードのコンソール出力です。
Equation Text: y = 8.1333x + 5