X-coordinates larger than available columns
Support Question
Hello,
I would like to know if the following behavior is correct:
If I scroll very quickly to the right, at some point the table's dataListener is requesting X coordinates (columns) larger than the number of columns provided to the table.
For example: in my table, there are 40 columns, and when I scroll quickly to the right, there is a moment when the table requests position 46 (x1), even though the maximum value should be 40.
Thanks
This is likely due to your browser's scroll inertia, which draws a little bounce animation when you scroll fast at the edge of the viewport. This is probably something we can fix, let me look.
You can try overscroll-behavior CSS rule to disable this as a workaround.
Perfect.
Thank you for your reply.