HTML
JPG
PDF
XML
XLSX
XLSX
Create SurfaceContourWireframe Chart in XLSX Documents via C#
Programmatically generate high‑quality 3‑D Surface‑Contour‑Wireframe charts in Microsoft Excel spreadsheets using Aspose.Cells for .NET.
Generating a Microsoft Excel XLSX file that contains a SurfaceContourWireframe 3‑D chart is straightforward with Aspose.Cells for .NET. The library does not require Microsoft Office on the server and supports .NET Framework, .NET Core, .NET 5/6/7, Xamarin, Mono, and Azure environments.
How to create a SurfaceContourWireframe chart in XLSX via C#
The following steps show how to build a workbook, populate it with sample data, insert a SurfaceContourWireframe chart, and save the result as an XLSX file.
- Add the Aspose.Cells NuGet package to your project.
- Include the required namespace in your source file.
- Create a Workbook instance.
- Fill a range of cells with numeric data that will be visualized.
- Add a chart of type ChartType.SurfaceContourWireframe.
- Set the chart’s data source, position, and optional formatting.
- Save the workbook.
System Requirements
Aspose.Cells for .NET runs on any operating system that supports .NET Framework 4.0+, .NET Core 2.0+, .NET 5/6/7, or the corresponding mono/xamarin runtimes. Development can be performed with Visual Studio, Visual Studio Code, or any other IDE that supports C#.
- Install from the command line:
dotnet add package Aspose.Cells
or via the Package Manager Console in Visual Studio:
Install-Package Aspose.Cells
- Alternatively, download the latest MSI installer or ZIP archive from the Aspose .Cells .NET download page.
Create SurfaceContourWireframe chart – C#
Aspose.Cells for .NET enables developers to create, modify, convert, render, and print Excel spreadsheets without requiring Microsoft Excel. The library supports a large set of chart types—including the Surface, Contour, Wireframe, and SurfaceContourWireframe chart—making it ideal for scientific, engineering, and financial visualizations.
XLSX What is XLSX File Format?
XLSX is the default file format for Microsoft Excel workbooks introduced with Office 2007. It is a ZIP package that contains a collection of XML parts, enabling efficient storage and easy manipulation through libraries such as Aspose.Cells.
Read More