const table = useReactTable({ //... initialState: { columnVisibility: { columnId1: true, columnId2: false, //hide this column by default columnId3: true, }, //... }, }); Disable Hiding Columns By default, all columns can be hidden or shown. If you want to prevent certain colu...
column name used in server-side calls sortable: boolean, // Overrides the table option resizable: boolean, // Overrides the table option filterable: boolean, // Overrides the table option show: true, // can be used to hide a column width: undefined, // A hardcoded width for the column....