HTML
JPG
PDF
XML
XLSX
XLSX
Create ScatterConnectedByCurvesWithoutDataMarker Chart in XLSX via C#
Generate a smooth scatter chart without data markers programmatically using Aspose.Cells for .NET.
Generating a Microsoft Excel XLSX file that contains a ScatterConnectedByCurvesWithoutDataMarker chart is straightforward with Aspose.Cells for .NET. This chart type renders a smooth line (connected by curves) over scatter points while omitting data markers – perfect for visualising trend lines without clutter.
How to create ScatterConnectedByCurvesWithoutDataMarker chart in C#
The following steps walk you through creating a workbook, populating it with data, adding a ScatterConnectedByCurvesWithoutDataMarker chart, and saving the result.
- Add the Aspose.Cells NuGet package to your project.
- Create a
Workbookinstance. - Insert sample data into the first worksheet.
- Add a chart of type
ScatterConnectedByCurvesWithoutDataMarker. - Define a data series that points to the inserted data.
- Adjust chart title, axis titles, and optionally apply a style.
- Save the workbook as an XLSX file.
System Requirements
Aspose.Cells for .NET works on any platform that supports .NET Standard 2.0 or later – including .NET Framework, .NET Core, .NET 5/6/7, Mono, Xamarin, and Azure Functions.
- Install via NuGet:
nuget install Aspose.CellsorInstall-Package Aspose.Cellsin the Package Manager Console. - Or download the offline installer or ZIP containing all DLLs from the Aspose.Cells .NET download page.
Create ScatterConnectedByCurvesWithoutDataMarker chart – C#
Aspose.Cells for .NET provides a comprehensive API for creating, modifying, rendering, and converting Excel spreadsheets across platforms. With full support for chart types – including the ScatterConnectedByCurvesWithoutDataMarker – developers can build rich reporting solutions without requiring Microsoft Office on the server.
XLSX What is XLSX File Format?
XLSX is the modern Open XML format for Microsoft Excel workbooks introduced with Office 2007. It is a zip package that contains a collection of XML parts describing worksheets, charts, styles, and other workbook elements.
Read More