HTML
JPG
PDF
XML
XLSX
XLSX
Create Cylinder Chart in XLSX Documents via C#
High‑performance generation of Microsoft Excel XLSX files with 3‑D Cylinder charts using server‑side .NET APIs.
Generating a Microsoft Excel XLSX file with a 3‑D Cylinder chart is straightforward. The example below shows how to use Aspose.Cells for .NET to build a workbook, populate it with data, and insert a Cylinder chart without requiring Microsoft Office on the server.
How to create Cylinder chart in XLSX via C#
The steps are simple:
- Add the Aspose.Cells namespace.
- Create a
Workbookinstance. - Fill the worksheet with sample data.
- Add a chart of type Cylinder.
- Configure chart titles, axis, and style.
- Save the workbook as an XLSX file.
System Requirements
The library runs on any platform that supports .NET Framework, .NET Core, .NET 5/6/7, Mono, Xamarin, or Azure Functions. A typical development environment is Microsoft Visual Studio (Windows, macOS, or Linux).
- Install via NuGet:
nuget install Aspose.CellsorInstall-Package Aspose.Cells. - Alternatively, download the MSI installer or ZIP package from the Aspose.Cells download page.
Create Cylinder Chart in XLSX – C#
Aspose.Cells for .NET is a powerful spreadsheet library that enables developers to create, modify, convert, render, and print Excel files across multiple platforms. Besides charting, it supports formula calculation, document protection, worksheet merging, and much more, making it the ideal choice for any server‑side spreadsheet automation scenario.
XLSX What is XLSX File Format?
XLSX is Microsoft’s modern Open XML spreadsheet format introduced with Office 2007. It stores workbook data in a ZIP container that houses XML parts, CSS‑style relationships, and media resources. Aspose.Cells reads and writes this format natively, without any dependency on Microsoft Office.
Read More