View Single Post
  #1  
Old 07-09-2010, 11:55 AM
Woosuk Jang Woosuk Jang is offline
Member
 
Join Date: Jun 2009
Posts: 8
Vizinfo box: help with aligning text

We have a program that uses the vizinfo box with text next to radio buttons inside but for some reason the text aligns itself to the rightmost side (closest to the radio buttons) and I'm having trouble trying to get it left-aligned.

The snippet looks like:

Code:
subTalk = vizinfo.add("")
...
aRadio = subTalk.add(viz.RADIO, 0, Level1[0]); bRadio = subTalk.add(viz.RADIO, 0, Level1[1]); cRadio = subTalk.add(viz.RADIO, 0 ,Level1[2])
Where Level1 is the array with the various text in it. Any help on getting it to be left-aligned without modifying the text?

Thanks.
Reply With Quote