https://i.stack.imgur.com/0YV9m.png
Background In my current project, I am utilizing the Datagrid component from MUI [email protected]. I have disabled the column menu to display the toolbar at the top of the table instead of on individual columns.
<DataGrid
disableColumnMenu
slots={ { toolbar: GridToolbar } }
...
/>
What I'm Seeking? I would like to update the header names from COLUMNS to MyColumn and Density to MyDensity.
Any suggestions on how I can accomplish this task?
Appreciate your help!