HTML JPG PDF XML XLSX
  Product Family
XLSX

Create Bubble3D Chart in XLSX Documents via C#

High‑performance creation of 3‑D Bubble charts in Microsoft Excel XLSX spreadsheets using server‑side .NET APIs.

Generating a Microsoft Excel XLSX file that contains a 3‑D Bubble chart (Bubble3D) is straightforward with Aspose.Cells for .NET. The library enables you to build, style, and populate charts programmatically without any dependence on Microsoft Office. This article walks you through the complete process of creating a Bubble3D chart, populating it with data, and saving the workbook.

How to create a Bubble3D chart in XLSX via C#

The following steps illustrate how to add a Bubble3D chart to a worksheet:

  1. Add the Aspose.Cells namespace to your class file.
  2. Instantiate a Workbook object.
  3. Access the first worksheet and populate it with data – X values, Y values and bubble sizes.
  4. Insert a chart of type ChartType.Bubble3D.
  5. Configure the chart’s series, titles, and formatting.
  6. Save the workbook as an XLSX file.

System Requirements

Aspose.Cells for .NET runs on any platform that supports .NET Framework 4.x, .NET Core 2.x+, .NET 5/6/7, Mono, Xamarin, or Azure Functions. Development can be performed with Visual Studio, Visual Studio Code, or any other C# IDE.

  • Install via NuGet: nuget install Aspose.Cells or Install-Package Aspose.Cells in the Package Manager Console.
  • Or download the offline installer / DLLs from the Aspose.Cells .NET download page.

 

Create Bubble3D Chart in XLSX - C#

 
Aspose.Cells is a powerful .NET spreadsheet library that enables developers to generate, manipulate, convert, render, and print Excel files across platforms. In addition to chart creation, the API supports a wide range of spreadsheet operations, making it an ideal choice for server‑side automation, reporting, and data‑driven applications.

XLSX What is XLSX File Format?

XLSX is the Open XML format for Microsoft Excel workbooks introduced with Office 2007. It stores data, styles, charts, and other workbook parts in a ZIP container of XML files, allowing easy programmatic access without requiring Microsoft Office.

Read More