Search code examples
reactjsdatagridmaterial-uitooltip

React MaterialUI DataGrid changing sort ToolTip text


Is there a simple way to change the tooltip text when you hover over the sorting icon in the MaterialUI DataGrid component? I would like to be able to change the text from 'sort' to something else, maybe in a foreign language.

MUI DataGrid sort tooltip text

I have tried looking for a simple solution but could not find one anywhere.

Thanks


Solution

  • You can set the localeText prop of the table as an object to override the texts.

    Here is the list of overrides.

    In your case it would be

    localeText={{columnHeaderSortIconLabel: 'Sortieren'}}