function table_setColumnPinning<TFeatures, TData>(table, updater): void;function table_setColumnPinning<TFeatures, TData>(table, updater): void;Defined in: features/column-pinning/columnPinningFeature.utils.ts:289
Routes a column pinning updater through the table's pinning change handler.
The updater may be a next { left, right } state or a function of the previous state, matching the instance table.setColumnPinning behavior.
TFeatures extends TableFeatures
TData extends RowData
Table_Internal<TFeatures, TData>
void
table_setColumnPinning(table, (old) => ({ ...old, left: ['select'] }))table_setColumnPinning(table, (old) => ({ ...old, left: ['select'] }))