I want to remove the vertical scroll bard from react-data-grid. I didn't find any configuration setting for the same. However, I manage to do it with css but I can't adjust the column to take 100% width as the space still exits in header column row. Any suggestion on this.
My fix for scrollbar
.react-grid-Canvas {
overflow: auto;
}