Rendering della tabella pivot in GridDesktop
Contents
[
Hide
]
Possibili scenari di utilizzo
Se il tuo file Excel ha una tabella pivot, GridDesktop sarà in grado di caricare e rendere correttamente la tabella pivot. Inoltre, sarai in grado di interagire con la tabella pivot nella GUI e manipolarla.
Rendering della tabella pivot in GridDesktop
Il codice di esempio seguente importa il fileEsempio di file Excel contenente la tabella pivot. Lo screenshot mostra il risultato dell’esecuzione di questo codice di esempio per riferimento.
Codice d’esempio
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-.NET | |
//Path of the sample Excel file containing Pivot Table | |
string filePath = Utils.Get_SourceDirectory() + "sampleRenderPivotTableInGridDesktop.xlsx"; | |
//Import sample Excel file containing Pivot Table | |
this.gridDesktop1.ImportExcelFile(filePath); |