Obtener el texto de la ecuación de la línea de tendencia del gráfico

La siguiente captura de pantalla muestra el gráfico con una línea de tendencia y su texto de ecuación se muestra en color rojo. Recuperaremos este texto usando elLínea de tendencia.Etiquetas de datos.Textopropiedad en el siguiente código de ejemplo.

todo:imagen_alternativa_texto

C# código para obtener el texto de la ecuación de la línea de tendencia del gráfico

// 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);

Salida generada por el código de muestra

Esta es la salida de la consola del código de muestra anterior.

Equation Text: y = 8.1333x + 5