Please see the attached screenshot. Both sets of radio buttons have the same style applied, but why is the spacing in the second set so different?
Also, how can I style the text of the radio button choices? Radio buttons apparently don’t inherit font settings from the generic field style, so I tried manually adding font information to the radio button style, but no luck.

Hi Sean,
The checkboxes/radiobuttons will be spaced by the length of the largest value in the value list.
So the longest value will decide how ALL values are spaced.
Hope this helps.
Hi Robert,
Thanks for the explanantion. How can I style the text associated with the checkboxes/radio buttons?
Hi Sean,
chartpacs:
How can I style the text associated with the checkboxes/radio buttons?
You can use HTML in the value list. Just treat each value as a separate HTML ‘page’.
Hope this helps.
Hmmm…that seems overly complicated. Do you have an example?
Well you can have a (static) value list like this:
Plain value 1
<html><b>Bold value 2</b></html>
<html>Italic value 3</html>
<html><u>Underlined value 4</u></html>
Of course you can set this dynamically as well using application.setValueListItems();
Hope this helps.
Thanks, Robert. That just seems like overkill. Maybe I’m missing something, but oh well…