Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

ag grid horizontal scroll

I have used ag-grid ng in angular application. when number of columns exceeds not getting the horizontal scroll bar.

like image 231
Poonam Thote Avatar asked Feb 17 '17 09:02

Poonam Thote


1 Answers

Are you sure is because of the number of columns? I had the same problem and the solution was take off the pinned option of every column.

For example if you have this:

{headerName: "Athlete", field: "athlete", width: 150, pinned: 'left'}

it has to be:

{headerName: "Athlete", field: "athlete", width: 150}
like image 52
M. Araya Avatar answered Sep 21 '22 10:09

M. Araya