Python aracılığıyla 3D Çizgi Grafikleri oluşturun
Python API'lerini kullanarak programlı olarak yerel ve yüksek performanslı MS Excel Grafikleri oluşturma.
Python ile 3D Çizgi Grafikleri Nasıl Oluşturulur
Veri işlemeye yönelik farklı raporlama uygulamalarını birkaç satır kodla çalıştırarak geliştiricilerin 3D Çizgi grafiği oluşturması kolaydır.
- Asposecell’leri kod dosyanıza aktarın.
- Çalışma Kitabı sınıfı örneği oluşturun.
- Çalışma sayfasına bazı veriler ekleyin.
- Çalışma sayfasına 3B Çizgi grafiği ekleme
- Dizinini ileterek Charts koleksiyonundan yeni grafik nesnesine erişin.
- Grafiğin veri kaynağını Chart.setChartDataRange yöntemiyle ayarlayın.
- Excel veya ODS dosyası olarak kaydedin.
sistem gereksinimleri
Aspose.Cells for Python platformdan bağımsızdır API ve herhangi bir platformda kullanılabilir (Windows, Linux ve MacOS), sadece sistemin Java 1.8 veya daha yüksek bir sürüme sahip olduğundan emin olun, Python 3,5 veya daha yüksek.
- Java'i kurun ve PATH ortam değişkenine ekleyin, örneğin:PATH=C:\Program Files\Java\jdk1.8.0_131;
.
- Aspose.Cells for Python'i şuradan yükleyin:pypi , komutu şu şekilde kullanın:$ pip install aspose-cells
.Aşağıdaki kaynak kodu, Python\'i kullanarak MS Excel XLSX dosyasına 3B Çizgi Grafiğinin nasıl oluşturulacağını gösterir.
import jpype | |
import asposecells | |
jpype.startJVM() | |
from asposecells.api import Workbook, CellsHelper, FileFormatType, ChartType, License | |
# Instantiating a Workbook object | |
workbook = Workbook(FileFormatType.XLSX) | |
# Obtaining the reference of the first worksheet | |
worksheet = workbook.getWorksheets().get(0) | |
worksheet.getCells().get("A2").putValue("Category1") | |
worksheet.getCells().get("A3").putValue("Category2") | |
worksheet.getCells().get("A4").putValue("Category3") | |
worksheet.getCells().get("B1").putValue("Line1") | |
worksheet.getCells().get("B2").putValue(300) | |
worksheet.getCells().get("B3").putValue(400) | |
worksheet.getCells().get("B4").putValue(200) | |
worksheet.getCells().get("C1").putValue("Line2") | |
worksheet.getCells().get("C2").putValue(180) | |
worksheet.getCells().get("C3").putValue(240) | |
worksheet.getCells().get("C4").putValue(450) | |
# Adding a 3D Line chart to the worksheet | |
chartIndex = worksheet.getCharts().add(ChartType.LINE3D, 6, 2, 22, 10) | |
# Accessing the instance of the newly added chart | |
chart = worksheet.getCharts().get(chartIndex) | |
# Setting chart data source as the range "A1:B4" | |
chart.setChartDataRange("A1: C4", True); | |
# Save the Workbook as .xlsx file. | |
workbook.save("output.xlsx"); |