Millisecond Forums

Independently adjusting the font size of \caption and \optionvalues when using radiobuttons

https://forums.millisecond.com/Topic40809.aspx

By EN - 6/3/2025

Hello:

I wonder if there is a way to independently adjust the font size of /caption and /optionvalues when using radiobuttons?

I understand that / itemfontstyle, e.g., / itemfontstyle = ("Arial", 2.00%, false, false, false, false, 5, 1), allows me to to setup the font size of both /caption and /optionvalues but I would like to make the labels in /optionvalues a bit smaller than the /caption (to make the latter more visible).

Any help will be greatly appreciated. Thank you very much in advance.

EN
By Dave - 6/4/2025

EN - 6/4/2025
Hello:

I wonder if there is a way to independently adjust the font size of /caption and /optionvalues when using radiobuttons?

I understand that / itemfontstyle, e.g., / itemfontstyle = ("Arial", 2.00%, false, false, false, false, 5, 1), allows me to to setup the font size of both /caption and /optionvalues but I would like to make the labels in /optionvalues a bit smaller than the /caption (to make the latter more visible).

Any help will be greatly appreciated. Thank you very much in advance.

EN

/optionValues are never displayed, so you must mean /options.

<surveyPage examplePage>
/ questions = [1=exampleQuestion]
/ showPageNumbers = false
/ showQuestionNumbers = false
</surveyPage>

<radioButtons exampleQuestion>
/ caption = "The Question's Caption"
/ options = ("Option A", "Option B", "Option C")
/ optionValues = ("1", "2", "3")
/ fontStyle = ("Arial", 4%) // applies to caption
/ responseFontStyle = ("Times New Roman", 2%) // applies to response options
</radioButtons>



By EN - 6/4/2025

Dave - 6/5/2025
EN - 6/4/2025
Hello:

I wonder if there is a way to independently adjust the font size of /caption and /optionvalues when using radiobuttons?

I understand that / itemfontstyle, e.g., / itemfontstyle = ("Arial", 2.00%, false, false, false, false, 5, 1), allows me to to setup the font size of both /caption and /optionvalues but I would like to make the labels in /optionvalues a bit smaller than the /caption (to make the latter more visible).

Any help will be greatly appreciated. Thank you very much in advance.

EN

/optionValues are never displayed, so you must mean /options.

<surveyPage examplePage>
/ questions = [1=exampleQuestion]
/ showPageNumbers = false
/ showQuestionNumbers = false
</surveyPage>

<radioButtons exampleQuestion>
/ caption = "The Question's Caption"
/ options = ("Option A", "Option B", "Option C")
/ optionValues = ("1", "2", "3")
/ fontStyle = ("Arial", 4%) // applies to caption
/ responseFontStyle = ("Times New Roman", 2%) // applies to response options
</radioButtons>




Thanks, Dave! This is exactly what I wanted.