Defines the sorting for values in a specific row and/or column in the pivot table.
sorting: { column: ValueSortingObject, row: ValueSortingObject }
Property/Type | Description |
---|---|
column ValueSortingObject | Defines the sorting for values in a specific column. |
row ValueSortingObject | Defines the sorting for values in a specific row. |
Example with the SortingObject:
slice: { // Other slice properties sorting: { column: { // ValueSortingObject }, row: { // ValueSortingObject }, }, }