Defined in: features/column-resizing/columnResizingFeature.types.ts:20
optional columnResizeDirection: ColumnResizeDirection;
Defined in: features/column-resizing/columnResizingFeature.types.ts:32
Enables or disables right-to-left support for resizing the column. defaults to 'ltr'.
optional columnResizeMode: ColumnResizeMode;
Defined in: features/column-resizing/columnResizingFeature.types.ts:24
Determines when the columnSizing state is updated. onChange updates the state when the user is dragging the resize handle. onEnd updates the state when the user releases the resize handle.
optional enableColumnResizing: boolean;
Defined in: features/column-resizing/columnResizingFeature.types.ts:28
Enables or disables column resizing for the column.
optional onColumnResizingChange: OnChangeFn<columnResizingState>;
Defined in: features/column-resizing/columnResizingFeature.types.ts:36
If provided, this function will be called with an updaterFn when state.columnResizing changes. This overrides the default internal state management, so you will also need to supply state.columnResizing from your own managed state.