Data-grid update & scrollbar in row

Hey there !

Is there an easy way to remove the scrollbar from the data-grid ?
Since the last update they popped here, it takes space, it’s always there and it’s annoying.
As soon as the content inside the cell is longer than the base size of the column, the scrollbar will be there even if you’re not hovering it.
Is there a simple solution to make it prettier or disappear… Any “scrollbar-width / scrollbar-color” i have tried in the Custom CSS section didn’t seem to do anything.

image

Hi @antoine_caron , you can try any of the following approaches to resolve:

  • Set a fixed width for the column (wide enough to fit the content) in the Datagrid settings

  • Enable Wrap Text for that specific column in the Datagrid settings

  • Switch the column type to Custom and adjust the styling from its Cell Div — for example, you can apply overflow: hidden or overflow-x: hidden;

:slight_smile: