الحصول على نص المعادلة لخط اتجاه الرسم البياني
Contents
[
Hide
]
يمكنك استرجاع نص المعادلة لخط اتجاه الرسم البياني باستخدام Aspose.Cells. توفر Aspose.Cells الواجهة البرمجية للتطبيقات Trendline.getDataLabels().getText() التي تُرجع نص المعادلة لخط اتجاه الرسم البياني. لاستخدام هذه الواجهة البرمجية، سيلزمك أولاً استدعاء الطريقة Chart.calculate().
مثال
تظهر اللقطة المتصورة التالية الرسم البياني مع خط اتجاه ونص المعادلة له باللون الأحمر. سوف نسترجع هذا النص باستخدام الواجهة البرمجية Trendline.getDataLabels().getText() في رمز العينة التالي.
جافا كود للحصول على نص معادلة اتجاه الخط في المخطط
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.getDataDir(GetWorksheetOfChart.class); | |
// Create workbook object from source Excel file | |
Workbook workbook = new Workbook(dataDir + "source.xlsx"); | |
// Access the first worksheet | |
Worksheet worksheet = workbook.getWorksheets().get(0); | |
// Access the first chart inside the worksheet | |
Chart chart = worksheet.getCharts().get(0); | |
// Calculate the Chart first to get the Equation Text of Trendline | |
chart.calculate(); | |
// Access the Trendline | |
Trendline trendLine = chart.getNSeries().get(0).getTrendLines().get(0); | |
// Read the Equation Text of Trendline | |
System.out.println("Equation Text: " + trendLine.getDataLabels().getText()); |
الناتج الذي تم استخراجه بواسطة الشفرة العينية
هذا هو إنتاج الكونسول للكود العيني أعلاه.
Equation Text: y = 8.1333x + 5