HTML
JPG
PDF
XML
XLSX
XLSX
Create Area3D Chart in XLSX Documents via C#
Generate high‑quality 3‑D Area charts programmatically with Aspose.Cells for .NET – no Microsoft Office required.
Creating a 3‑D Area chart (Area3D) in an Excel workbook is straightforward with Aspose.Cells for .NET. The library enables you to build, format and embed charts without having Microsoft Excel installed on the server. This article demonstrates how to generate an Area3D chart, customize its appearance, and save the result as an XLSX file.
How to create an Area3D chart in XLSX via C#
The following steps show how to add a 3‑D Area chart to a worksheet:
- Add the
Aspose.Cellsnamespace to your class file. - Instantiate a
Workbookobject. - Populate the worksheet with sample data.
- Access the worksheet’s
Chartscollection and add a new chart of type Area3D. - Define the data range for the chart series.
- (Optional) Set chart title, legend, axis titles, and style.
- Save the workbook as an XLSX file.
System Requirements
Aspose.Cells for .NET works on any platform that supports .NET Framework 4.0+, .NET Core 2.0+, .NET 5/6/7, Mono, Xamarin, and Azure. No Microsoft Office installation is required.
- Install via NuGet:
nuget install Aspose.CellsorInstall-Package Aspose.Cells. - Or download the MSI/ZIP package from the Aspose.Cells download page.
Create Area3D Chart - C#
Aspose.Cells for .NET is a powerful spreadsheet API that enables developers to create, modify, convert, render and print Excel files across platforms. It provides full support for chart types, including 3‑D Area charts, without relying on Microsoft Office components.
XLSX What is XLSX File Format?
XLSX is the default Office Open XML format for Microsoft Excel. It stores workbook data, styles, and charts as a collection of XML parts inside a ZIP container, making it easy to exchange and process programmatically.
Read More