Hello all !
I seem to encounter a problem, as i want to create a scale going from 100 (so on the left) to 50 (on the right), so far i’ve come to this, but it draws a scale from 100 to 101 with all the decimals inbetween. I don’t know if it’s possible to create a decreasing scale ?
rating_scale1 = visual.RatingScale(
win=win,
name=‘rating_scale1’,
marker=‘circle’,
size=1,
pos=[-0.4, -0.5],
low=100,
high=50,
labels=None,
tickMarks=[100, 90, 80, 70, 60, 50],
tickHeight=1,
showValue=True,
textColor=[0,1,0]
)
Thank you