PennController for IBEX › Forums › Support › hidding some labels › Reply To: hidding some labels
January 8, 2021 at 3:50 pm
#6503
Keymaster
Hi,
I think it’s a bug introduced in PennController 1.9. Here’s a workaround:
newTrial(
newScale("myScale",
"not at all",
"<span style='visibility: hidden;'>1</span>",
"not so much",
"<span style='visibility: hidden;'>3</span>",
"somewhat",
"<span style='visibility: hidden;'>5</span>",
"completely"
)
.print()
.labelsPosition("top")
.log()
.wait()
)
Jeremy