I want the column to be scrollable horizontally (left-right) because there is more data than can be displayed on the screen.
Could you please advise me?
I want the column to be scrollable horizontally (left-right) because there is more data than can be displayed on the screen.
Could you please advise me?
use custom css like this
overflow-x: auto;
overflow-y: hidden;
scrollbar-color: #9a9da0 #fff;
scrollbar-width: thin;
for the table
“Thank you very much. It works great!”