How to add scrollbar in Grid

2.8k Views Asked by At

enter image description here

Hello,

i need help in adding a scrollbar on top, after the headers, horizontal scrollbar. thanks alot its in react js.

1

There are 1 best solutions below

5
Ali Yaman On

did you try this?

<div style={{ overflowX: 'auto',overflowY: 'auto' }}>
  ... your component
</div>

Also you can use this packages for scrolling;