Trabajar con formatos de visualización de datos de DataField en Pivot Table
Contents
[
Hide
]
Aspose.Cells admite todos los formatos de visualización de datos de DataField.
Opción de formato de visualización “Clasificar de menor a mayor” y “Clasificar de mayor a menor”
ASpose.Cells ofrece la posibilidad de configurar la opción de formato de visualización para los campos dinámicos. Para esto, el API proporciona elPivotField.DataDisplayFormat propiedad. Para clasificar de mayor a menor, puede configurar elPivotField.DataDisplayFormatpropiedad aPivotFieldDataDisplayFormat.RankLargestToSmallest. El siguiente fragmento de código muestra la configuración de las opciones de formato de visualización.
Los archivos fuente y de salida de muestra se pueden descargar desde aquí para probar el código de muestra:
This file contains 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 | |
// directories | |
string sourceDir = RunExamples.Get_SourceDirectory(); | |
string outputDir = RunExamples.Get_OutputDirectory(); | |
// Load a template file | |
Workbook workbook = new Workbook(sourceDir + "PivotTableSample.xlsx"); | |
// Get the first worksheet | |
Worksheet worksheet = workbook.Worksheets[0]; | |
int pivotIndex = 0; | |
// Accessing the PivotTable | |
PivotTable pivotTable = worksheet.PivotTables[pivotIndex]; | |
// Accessing the data fields. | |
PivotFieldCollection pivotFields = pivotTable.DataFields; | |
// Accessing the first data field in the data fields. | |
PivotField pivotField = pivotFields[0]; | |
// Setting data display format | |
pivotField.ShowValuesSetting.CalculationType = PivotFieldDataDisplayFormat.RankLargestToSmallest; | |
pivotTable.CalculateData(); | |
// Saving the Excel file | |
workbook.Save(outputDir + "PivotTableDataDisplayFormatRanking_out.xlsx"); |