احصل على نص معادلة خط اتجاه المخطط

تُظهر لقطة الشاشة التالية المخطط الذي يحتوي على خط اتجاه ويظهر نص المعادلة باللون الأحمر. سنقوم باسترداد هذا النص باستخدامTrendline.DataLabels.Textالخاصية في نموذج التعليمات البرمجية التالي.

ما يجب القيام به: image_بديل_نص

كود C# للحصول على نص معادلة خط اتجاه المخطط

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