Group: Forum Members
Posts: 8,
Visits: 71
|
Hi everyone,
I would like to do a survey with one question ("How did you find the task?") and several radiobuttons to indicate different aspects ("very frustrating" / "not frustrating at all"; "very easy" / "very difficult").
I would like to go the the horizontalequal option, but as the options have different length, they are not equally spaced. Is it possible to change that?
Thank you bery much for your help! Karolin
Here is my code:
<surveypage concluding1> / caption = "Der Aufgabenteil der Studie ist nun vorbei. Es folgen noch einige wenige Fragen." / fontstyle = ("avenir", 2.2%, true, false, false, false, 5) / subcaptionfontstyle = ("avenir", 2%, false, true, false, false, 5, 0 ) / itemfontstyle = ("avenir", 2.2%, false, true, false, false, 5, 0) / txcolor = (black) / questions = [1 = sequence(boring, frustrating, difficult)] / showbackbutton = false / showpagenumbers = false / showquestionnumbers = false / itemspacing = 2% / nextbuttonposition = (90%, 90%) / navigationbuttonfontstyle = ("Avenir", 2.2%, false, false, false, false, 5, 0) / nextlabel = " weiter" / finishlabel = " weiter" </surveypage>
<radiobuttons boring> / caption = "Wie würden Sie die Aufgabe beschreiben?" / options=("gar nicht langweilig", " ", " ", " ", " ", " ", "sehr langweilig") / optionvalues= ("1", "2", "3", "4", "5", "6", "7") / orientation = horizontalequal / required = true / responsefontstyle = ("Arial", 1.5%, true, false, false, false, 5, 0) </radiobuttons>
<radiobuttons frustrating> / options=("gar nicht frustrierend", " ", " ", " ", " ", " ", "sehr frustrierend") / optionvalues= ("1", "2", "3", "4", "5", "6", "7") / orientation = horizontalequal / required = true / responsefontstyle = ("Arial", 1.5%, true, false, false, false, 5, 0) </radiobuttons>
<radiobuttons difficult> / options=("viel zu leicht", " ", " ", " ", " ", " ", "viel zu schwierig") / optionvalues= ("1", "2", "3", "4", "5", "6", "7") / orientation = horizontalequal / required = true / responsefontstyle = ("Arial", 1.5%, true, false, false, false, 5, 0) </radiobuttons>
|