I have a huge dataset and want to render items in the grid using react ag-grid in such a way that there is only one column with a fixed number of rows ( no vertical scrolling). If the data exceeds row count, it should render to the next column and horizontal scrolling should be enabled only. I have tried finding any property to fix number of rows for grid but couldn't find it in the documentation.
If you see below image, data is rendered and verticle scrolling is enabled but i want to fix number of rows so that data overflows to next column instead. How can i achieve this layout using ag-grid.
Thank you.