How to hide column in AG-Grid?
You can set the column property of suppressToolPanel to true to achieve that. var columnDefs = [ { headerName: “Stone_ID”, field: “Stone_ID”, width: 100, hide: true, suppressToolPanel: true } ]
You can set the column property of suppressToolPanel to true to achieve that. var columnDefs = [ { headerName: “Stone_ID”, field: “Stone_ID”, width: 100, hide: true, suppressToolPanel: true } ]