0

I'm trying to remove gridlines from a basic table. Here is a codesandbox: https://codesandbox.io/s/rdg-cell-editing-u2ood.

How do I do it? Do I need to manually override internal css classes or is there a props to do this?

evianpring
  • 3,316
  • 1
  • 25
  • 54

2 Answers2

1

You need to use CSS to remove border, there is no props to do it.

.react-grid-Cell {
  border: none;
}

Demo

ravibagul91
  • 20,072
  • 5
  • 36
  • 59
0

Seems like there is no props to remove the border. You can do this by overriding the border attributes of class .react-grid-Cell .

Harikrishnan
  • 1,097
  • 8
  • 13