function table_setColumnSizing<TFeatures, TData>(table, updater): void;function table_setColumnSizing<TFeatures, TData>(table, updater): void;Defined in: features/column-sizing/columnSizingFeature.utils.ts:255
Routes a committed column sizing updater through the table's sizing handler.
The updater may be a next size map or a function of the previous map, matching the instance table.setColumnSizing behavior.
TFeatures extends TableFeatures
TData extends RowData
Table_Internal<TFeatures, TData>
void
table_setColumnSizing(table, (old) => ({ ...old, age: 96 }))table_setColumnSizing(table, (old) => ({ ...old, age: 96 }))