Z Axis

Possible Usage Scenarios

For some 3-D charts such as 3-D column, 3-D cone, or 3-D pyramid which has a depth (series) axis, also known as the Z axis, that you can change. You can specify the interval between tick marks, axis labels and other operation.

Handle Primary and Second Axis like Microsoft Excel

Please see the following sample code that create a new Excel file and put values of the chart in the first worksheet. Then we add a chart and set the chart type to Column3D,then you can see the Z Axis also called Depth Axis.

todo:image_alt_text

Sample Code

// Create an instance of Workbook
Workbook workbook = new Workbook();
// Get the first worksheet
Worksheet worksheet = workbook.Worksheets[0];
// Put values to cells for creating chart
worksheet.Cells["A1"].PutValue("A");
worksheet.Cells["B1"].PutValue("B");
worksheet.Cells["C1"].PutValue("C");
worksheet.Cells["A2"].PutValue(2);
worksheet.Cells["A3"].PutValue(1);
worksheet.Cells["B2"].PutValue(2);
worksheet.Cells["B3"].PutValue(3);
worksheet.Cells["C2"].PutValue(2);
worksheet.Cells["C3"].PutValue(3);
// Add a chart to the worksheet
int chartIndex = worksheet.Charts.Add(Aspose.Cells.Charts.ChartType.Column3D, 9, 6, 25, 16);
// Access the instance of the newly added chart
Aspose.Cells.Charts.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.SetChartDataRange("A2:C3", true);
// Hide the CategoryAxis axis
chart.CategoryAxis.IsVisible = false;
// Hide the ValueAxis axis
chart.ValueAxis.IsVisible = false;
// Save the file
workbook.Save("ZAxis.xlsx");
view raw ZAxis.cs hosted with ❤ by GitHub