HTML JPG PDF XML XLSX
  Product Family
XLSX

Create Pie3DExploded Chart in XLSX Documents via C#

Native and high‑performance Microsoft Excel XLSX spreadsheet with 3‑D exploded Pie chart creation programmatically using server‑side .NET APIs.

Generating a Microsoft Excel XLSX file with a 3‑D exploded Pie chart (Pie3DExploded) is straightforward with Aspose.Cells for .NET. The library allows you to create, customize, and render charts without requiring Microsoft Office. This article demonstrates how to build a Pie3DExploded chart programmatically and save the workbook.

How to create a Pie3DExploded chart in XLSX via C#

The following steps guide you through creating a Pie3DExploded chart inside a spreadsheet using Aspose.Cells.

  1. Include the required namespaces in your class file.
  2. Create an instance of the Workbook class.
  3. Populate the worksheet with the data that will be displayed in the chart.
  4. Add a chart of type ChartType.Pie3DExploded.
  5. Set the chart title, legend, and explode distance (optional).
  6. Save the workbook to an XLSX file.

System Requirements

Aspose.Cells for .NET works on any platform that supports .NET Framework, .NET Core, .NET 5/6/7, .NET Standard, Mono, Xamarin, or Azure Functions.

  • Install via NuGet: nuget install Aspose.Cells or Install-Package Aspose.Cells.
  • Or download the offline MSI/ZIP from the Aspose.Cells download page.
 

Create Pie3DExploded Chart - C#

 
Aspose.Cells for .NET provides a comprehensive API for creating, modifying, and rendering Excel spreadsheets. It enables developers to generate chart‑rich workbooks on the server without Microsoft Excel installed, supporting a wide range of output formats such as XLSX, XLS, PDF, HTML, and images.

XLSX What is XLSX File Format?

XLSX is the default Open XML format for Microsoft Excel. It stores workbook data as a collection of XML parts compressed into a ZIP package, making it lightweight and easy to process programmatically.

Read More