HTML
JPG
PDF
XML
XLSX
XLSX
Create ConicalColumn3D Chart in XLSX Documents via C#
Native, high‑performance Microsoft Excel XLSX spreadsheet with 3‑D Conical Column chart creation programmatically using server‑side .NET APIs.
Generating a Microsoft Excel XLSX file with a ConicalColumn3D chart programmatically is straightforward with Aspose.Cells for .NET. The library enables you to create, manipulate, and render Excel files without Microsoft Office installed, making it ideal for server‑side reporting and data‑visualisation scenarios.
How to create a ConicalColumn3D chart in XLSX via C#
The following steps guide you through creating a 3‑D conical column chart in a new workbook:
- Include the Aspose.Cells namespace.
- Instantiate a
Workbookobject. - Access the first worksheet and populate it with sample data.
- Add a chart of type
ChartType.ConicalColumn3D. - Set the chart’s data range, title, and formatting options.
- Save the workbook as an XLSX file.
System Requirements
The library runs on any platform that supports .NET Framework, .NET Core / .NET 5+, Mono, Xamarin, or Azure Functions. Development can be performed with Visual Studio, Visual Studio Code, 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 .NET download page.
Create ConicalColumn3D Chart - C#
Aspose.Cells is a powerful Excel spreadsheet API that enables cross‑platform creation, modification, conversion, rendering, and printing of Excel files. With support for a wide range of chart types—including 3‑D chart families—developers can generate insightful visualisations without requiring Microsoft Office.
XLSX What is XLSX File Format?
XLSX is the modern Open XML format for Microsoft Excel workbooks introduced with Office 2007. It is a ZIP container of XML parts following the ECMA‑376 / ISO/IEC 29500 standards, making it both lightweight and extensible.
Read More