Z轴

可能的使用场景

对于一些具有深度(系列)轴的3D图表,例如3D柱状图、3D圆锥体图或3D金字塔图,也称为Z轴,您可以进行更改。您可以指定刻度标记之间的间隔、轴标签和其他操作。

处理主轴和第二轴,就像处理Microsoft Excel一样

请参阅以下示例代码,创建一个新的Excel文件,并在第一个工作表中放置图表的值。然后我们添加一个图表并将图表类型设置为3D柱状图,然后您就可以看到Z轴,也称为深度轴。

todo:image_alt_text

示例代码

from aspose.cells import Workbook
from aspose.cells.charts import ChartType
# Create an instance of Workbook
workbook = Workbook()
# Get the first worksheet
worksheet = workbook.worksheets[0]
# Put values to cells for creating chart
worksheet.cells.get("A1").put_value("A")
worksheet.cells.get("B1").put_value("B")
worksheet.cells.get("C1").put_value("C")
worksheet.cells.get("A2").put_value(2)
worksheet.cells.get("A3").put_value(1)
worksheet.cells.get("B2").put_value(2)
worksheet.cells.get("B3").put_value(3)
worksheet.cells.get("C2").put_value(2)
worksheet.cells.get("C3").put_value(3)
# Add a chart to the worksheet
chartIndex = worksheet.charts.add(ChartType.COLUMN_3D, 9, 6, 25, 16)
# Access the instance of the newly added chart
chart = worksheet.charts[chartIndex]
# Calculate the hart
chart.calculate()
# Add SeriesCollection (chart data source) to the chart ranging from "A2" cell to "C3"
chart.set_chart_data_range("A2:C3", True)
# Hide the CategoryAxis axis
chart.category_axis.is_visible = False
# Hide the ValueAxis axis
chart.value_axis.is_visible = False
# Save the file
workbook.save("ZAxis.xlsx")
view raw Charts-ZAxis.py hosted with ❤ by GitHub