HTML
JPG
PDF
XML
XLSX
XLSX
Create Column3DClustered Chart in XLSX Documents via C#
Programmatically generate a high‑performance Microsoft Excel XLSX spreadsheet with a 3‑D Column Clustered chart using server‑side .NET APIs.
Generating a Microsoft Excel XLSX file with a 3‑D Column Clustered chart is straightforward with Aspose.Cells for .NET. The library lets you create, modify, and render spreadsheets without requiring Microsoft Office. In this article we walk through the steps needed to add a Column3DClustered chart to a workbook programmatically.
How to create Column3DClustered chart in XLSX via C#
The following steps show how to build a simple workbook, populate it with sample data, and insert a Column3DClustered chart.
- Add the Aspose.Cells NuGet package to your project.
- Create a Workbook instance.
- Fill worksheet cells with the data that will be charted.
- Add a chart of type Column3DClustered.
- Configure the chart’s series, categories, and title.
- Save the workbook as an XLSX file.
System Requirements
Works on any platform that supports .NET Framework, .NET Core, .NET 5/6/7, Mono, Xamarin, or Azure Functions. Development can be performed with Visual Studio, Visual Studio Code, Rider, or any other C# IDE.
- Install the library from the command line
dotnet add package Aspose.Cells
or via the Package Manager Console
Install-Package Aspose.Cells
- Or download the offline MSI/ZIP package from the Aspose.Cells downloads page.
Create Column3DClustered chart in XLSX – C#
Aspose.Cells for .NET is a comprehensive spreadsheet API that enables developers to create, modify, convert, render, and print Excel files without Microsoft Office. It supports a wide range of chart types, including the 3‑D Column Clustered chart demonstrated above.
XLSX What is XLSX File Format?
XLSX is the Open XML format for Microsoft Excel workbooks introduced with Office 2007. The file is a ZIP container that holds a collection of XML parts describing worksheets, charts, styles, and other workbook components.
Read More