I am using AgGrid with number of rows and columns. I have also applied cellStyle for cell conditional formatting. Which slows down horizontal scroll performance. So i want to make infinite column loading on horizontal scroll or say load more columns as scrolling horizontal.
sample data Is there any functionality to implemt this?
I have so many columns...so it took time in navigation..going forward and backward is not smooth
I would give a try with suppressColumnVirtualization=true. By doing so, you allow the DOM to render all the columns, not just the visible set.