获取图表趋势线的公式文本
Contents
[
Hide
]
您可以使用 Aspose.Cells 检索图表趋势线的公式文本。Aspose.Cells 提供趋势线.DataLabels.Text返回图表趋势线的公式文本的属性。要使用此属性,您首先必须调用图表.计算()方法。
以下屏幕截图显示了带有趋势线的图表,其公式文本显示为红色。我们将使用趋势线.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