Column pivoting transforms values from a column into new columns in your grid. Set the
columnPivotModel
property on grid state to enable this feature. Pivoting alone doesn't provide
much value — you must also specify a measure column to calculate values in your pivot. Use the
measureModel
property to define which columns to use as measure functions.
LyteNyte Grid creates unique state for pivot columns with their own sort and filter settings and ordering.
Your underlying data source must support column pivoting. Since pivots derive from row values, creating columns from these values depends on your data source. Both the Client Row Data Source and Server Row Data Source support column pivoting.
To start column pivoting:
Set the columnPivotModel
property to an array of column id
strings. You can only use
columns marked as columnPivotable
.
Configure the measureModel
with at least one measure function. Only columns with a
measureFunc
can appear in the measureModel
.
Enable pivot mode by setting columnPivotModeIsOn
to true
in the grid state. This property
toggles between normal mode and pivot mode.
LyteNyte Grid supports column pivots as a flattened view, where pivots break a measure into its
constituent parts. Pivots and measures become most useful when combined with row groups. Simply
set the rowGroupModel
value on the grid state to enable this powerful combination.
Use the columnPivotField
property on a column to determine the pivot value from row data. This
helps with client-side pivoting and provides hints to other data sources on how to pivot columns.
Set the measureFunc
property on a column to define how it behaves when added to the
measureModel
for pivots. Similar to Aggregations, columns have:
measureFuncDefault
that sets the default function when added to the measure modelmeasureFuncsAllowed
property that hints which functions a column may use for measuringThese properties help UI components guide users when selecting measures for columns.
Since most pivot column state is internal to the grid, LyteNyte Grid provides a comprehensive API for working with column pivots. Here are the key methods:
Pivot columns use their own sort model, separate from normal columns. Access and modify this with:
columnPivotSortModel
: Retrieves the current pivot sort modelcolumnPivotSetSortModel
: Sets a new sort model for pivot columnsStandard sort API methods like columnSortCycleToNext
are pivot-mode aware and work on pivot
columns.
Access and modify pivot column filters with:
columnPivotFilterModel
: Retrieves the current filter model for pivot columnscolumnPivotSetFilterModel
: Sets a new filter model for pivot columnsThese additional methods help with specific pivot operations:
columnPivotsLoading
: Returns true
when pivot columns are loading asynchronouslycolumnPivotsReload
: Requests the grid to reload pivot columns from the data sourcecolumnPivotField
: Returns the pivot key for a specific column and rowcolumnPivotFieldFromData
: Returns the pivot key for a specific column and data objectcolumnPivotMeasureField
: Returns the measure value for a specific column and datacolumnPivots
: Returns all pivot columnscolumnIsPivot
: Returns true
if the specified column is a pivot column