Scroll Grid Left And Right

Just wonder is Grid control able to set as scroll left and right?

ie:
I set grid width as 100%, i will add 10 columns via programmatic in the grid. If only 4 columns are fixed into the screen side, then i want scroll to right for other 6 columns

Or any other controls able to do that?

Thanks
Teo

The Common Grid isn’t designed to do this. With a bit of HTML and CSS, though, it should be possible. Put the Grid into a Container which isn’t as wide as the Grid.

it works as i set container as 100% width while grid as 150% width
i also key “overflow-x:scroll; -webkit-overflow-scrolling:touch;” in container style

thanks
Teo