RowGroupValuesWithExceptionKeys
Defines which Row Groups are expanded or collapsed
TypeScript
export type RowGroupValuesWithExceptionKeys = {
RowGroupDefaultBehavior: 'expanded' | 'collapsed';
} & XOR<{
ExceptionGroupKeys?: any[][];
}, {
GroupKeys?: GroupKeys[];
}>;