When I hover over any column this button shows, and after clicking it I can choose from options, like: Pin column, Auto-size, Reset, ...
How can I disable (hide) it? So that it's not shown when I hover column. hover over column
I'm using Angular app, and Ag-grid Enterprise.
Tried to add:
defaultColDef: ColDef = {
enableRowGroup: false,
enablePivot: false,
enableValue: false
};
But this 'hamburger' button still there. What should I do?
Thanks for hints, guys. Finally I just added:
defaultColDef: ColDef = { suppressMenu: true }
And this solved the issue