PennController for IBEX › Forums › Support › Continuous Sliding Scale › Reply To: Continuous Sliding Scale
April 29, 2022 at 4:57 pm
#8134
Jeremy
Keymaster
Hi,
If what you want is provide the user with 7 points visually, you could do that (replace the two occurrences of 10em
with whatever width you prefer):
newText("<span>1</span><span>2</span><span>3</span><span>4</span><span>5</span><span>6</span><span>7</span>") .css({display:"flex", "justify-content": "space-between"}) .size("10em","auto") .center() .print() , newScale(100).size("10em","auto").slider().center().log().print()
Then in your analyses, you can simply multiply the score by 0.07 and round it if you like
Jeremy