HTML
JPG
PDF
XML
XLSX
XLSX
Create Area3DStacked Chart in Excel via C#
High‑performance, server‑side creation of Microsoft Excel 3‑D Stacked Area charts using Aspose.Cells for .NET.
Generating a three‑dimensional stacked area chart (Area3DStacked) programmatically is straightforward with Aspose.Cells for .NET. The library provides a rich set of chart types that can be added to a workbook without needing Microsoft Excel installed on the server.
How to create an Area3DStacked chart in C#
The following steps demonstrate the entire workflow:
- Add the Aspose.Cells namespace.
- Create a
Workbookinstance. - Fill a worksheet with sample data.
- Insert an
Area3DStackedchart. - Configure the chart title, axis, and style.
- Save the workbook.
System Requirements
Works on any platform that supports .NET Standard 2.0, .NET 5/6/7, .NET Core, Mono, Xamarin, or Windows Azure. No Microsoft Office installation is required.
- Install via NuGet:
dotnet add package Aspose.CellsorInstall-Package Aspose.Cells. - Alternatively, download the offline MSI or ZIP package from the Aspose.Cells download page.
Create Area3DStacked Chart – C#
Aspose.Cells is a powerful spreadsheet API for .NET that enables developers to create, modify, convert, render and print Excel files without Microsoft Office. It supports all Excel chart types, including 3‑D stacked area charts, across XLS, XLSX, XLSB, and XLSM formats.
XLSX What is XLSX File Format?
XLSX is the default workbook format for Microsoft Excel 2007 and later. It follows the Open Packaging Conventions (OPC) and stores worksheet data, styles, and chart definitions as XML parts inside a ZIP container.
Read More