HTML
JPG
PDF
XML
XLSX
XLSX
Create CylindricalColumn3D Chart in XLSX Documents via C#
Programmatically generate high‑quality 3‑D cylindrical column charts in Microsoft Excel spreadsheets on the server side with Aspose.Cells for .NET.
Generating a Microsoft Excel XLSX file with a 3‑D cylindrical column chart is straightforward. Aspose.Cells for .NET enables you to create, customize, and export charts without requiring Microsoft Office on the server. This article demonstrates how to add a CylindricalColumn3D chart to a worksheet programmatically.
How to create a CylindricalColumn3D chart in XLSX via C#
Follow these steps to insert a CylindricalColumn3D chart into a workbook:
- Add the Aspose.Cells namespace to your class file.
- Create a
Workbookinstance. - Populate the worksheet with sample data.
- Add a chart of type
ChartType.CylindricalColumn3D. - Define the data series and categories.
- Customize chart title, axis titles, and style (optional).
- Save the workbook.
System Requirements
The library works on any platform that supports .NET Framework 4.0+, .NET Core 2.0+, .NET 5/6/7, Windows Azure, Mono, or Xamarin. Development can be done using Visual Studio, Rider, or any other .NET‑compatible IDE.
- Install via NuGet:
nuget install Aspose.CellsorInstall-Package Aspose.Cells. - Or download the offline MSI/ZIP package from the Aspose.Cells download page.
Create CylindricalColumn3D Chart – C#
Aspose.Cells for .NET is a powerful spreadsheet processing library that enables developers to create, modify, convert, render, and print Excel files across platforms. In addition to standard workbook operations, it offers a rich set of charting capabilities, including 3‑D, sparkline, and pivot charts, without any dependency on Microsoft Office.
XLSX What is XLSX File Format?
XLSX is Microsoft’s Open XML format for Excel workbooks, introduced with Office 2007. It stores data as a collection of XML parts inside a ZIP container, making it easy to generate, read, and edit programmatically.
Read More