Crea un grafico in un foglio di calcolo Excel usando C#

Categoria del blog: ImagingOffice.NET

08.05.2024

Microsoft Office Excel è un'applicazione per fogli di calcolo che consente di modificare i dati di un foglio di calcolo e di visualizzarli tramite grafici. Excel supporta i seguenti tipi di grafico: a colonne, a linee, a torta, a barre, ad area, a dispersione XY, a mappa, azionario, a superficie, radar, ad albero, a raggiera, a istogramma, a scatola e baffi, a cascata, a imbuto e combinato.

VintaSoft Imaging .NET SDK + VintaSoft Office .NET Plug-in fornisce una potente API .NET per lavorare con fogli di calcolo memorizzati in file XLSX.
VintaSoft Imaging .NET SDK consente di creare grafici Excel dei seguenti tipi:

Per creare un grafico in un foglio di calcolo Excel utilizzando VintaSoft Imaging .NET SDK è necessario completare i seguenti passaggi:

Ecco il codice C# che mostra come aggiungere un grafico "standard" a un foglio di calcolo Excel:
public static void AddStandardChartToXlsxWorksheet(string outXlsxFilename)
{
    // create a spreadsheet editor for synchronous editing of new spreadsheet document
    using (SpreadsheetEditor editor = SpreadsheetEditor.CreateEditor())
    {
        // get the first worksheet (empty)
        Worksheet sheet = editor.Document.Worksheets[0];
        
        // start the worksheet editing
        WorksheetEditor worksheetEditor = editor.StartEditing(sheet);

        // set worksheet name
        worksheetEditor.SetName("Example of add chart");
        
        // set categories and series for chart
        editor.SetCellValue(sheet, "A2", "Series 1");
        editor.SetCellValue(sheet, "A3", "Series 2");
        editor.SetCellValue(sheet, "A4", "Series 3");
        editor.SetCellValue(sheet, "B1", "Category 1");
        editor.SetCellValue(sheet, "C1", "Category 2");
        editor.SetCellValue(sheet, "D1", "Category 3");
        editor.SetCellValue(sheet, "E1", "Category 4");

        // set sample values for chart
        editor.SetCellValue(sheet, "B2", 5);
        editor.SetCellValue(sheet, "C2", 15);
        editor.SetCellValue(sheet, "D2", 45.5);
        editor.SetCellValue(sheet, "E2", 35);
        editor.SetCellValue(sheet, "B3", 110);
        editor.SetCellValue(sheet, "C3", 90);
        editor.SetCellValue(sheet, "D3", 88);
        editor.SetCellValue(sheet, "E3", 25);
        editor.SetCellValue(sheet, "B4", 15);
        editor.SetCellValue(sheet, "C4", 50);
        editor.SetCellValue(sheet, "D4", 20);
        editor.SetCellValue(sheet, "E4", 45);

        // add new Line chart to the worksheet
        SheetDrawing chart = editor.AddChart(sheet, StandardChartType.Line_LineWithMarkers_Horizontal, "A1:E4", new SheetDrawingLocation("A7:F17"));
        // set the chart title
        worksheetEditor.CreateChartPropertiesEditor(chart).SetTitle("Line Chart Example (Horizontal)");

        // finish the spreadsheet editing
        editor.FinishEditing();

        // save created spreadsheet document to a XLSX file
        editor.SaveAs(outXlsxFilename);
    }
}