I have a UIScrollView on a panel, set to Vertical movement. The scroll view has one child, which is a UIGrid containing a dynamic list of buttons. The UIGrid and all its children (the buttons) have UIDragScrollView components on them.
Vertical scrolling is working fine. The problem is that I can't figure out how to position the grid horizontally without using absolute pixel position (which makes the grid off-center in the scroll view when the main game window is resized).
What I'd like to do is anchor the grid to the parent scrollview horizontally, while letting it still be draggable vertically. Is there a way to apply an anchor in one direction only?