Displaying slider value/scale point on multiple statements | XM Community
Skip to main content
Question

Displaying slider value/scale point on multiple statements

  • June 13, 2025
  • 3 replies
  • 37 views

kgillis
Level 6 ●●●●●●
Forum|alt.badge.img+30
  • Level 6 ●●●●●●
  • 144 replies

Two questions:
1) is there a way to move the scale point below the statement text rather than displaying it on top?
2) is there a way to how the scale points on every statement or lock it to the top of screen for this question? I have 14 statements and would like to display the reference.

 

 

3 replies

MeganZich
Level 5 ●●●●●
Forum|alt.badge.img+44
  • Level 5 ●●●●●
  • 125 replies
  • June 16, 2025

I don’t have the answers for you, but a little different format option if you aren’t having to do a slider bar; when we have repeated scales, we typically present the question in a Matrix format and that has worked well for us (and you can repeat the headers if needed):

 

I hope you find your answers with the slider scale!


kgillis
Level 6 ●●●●●●
Forum|alt.badge.img+30
  • Author
  • Level 6 ●●●●●●
  • 144 replies
  • June 16, 2025

Yeah, unfortunately they are set on having sliders.


TomG
Level 8 ●●●●●●●●
Forum|alt.badge.img+27
  • Level 8 ●●●●●●●●
  • 6084 replies
  • June 18, 2025

@kgillis,

You can do this:

Qualtrics.SurveyEngine.addOnload(function() {
var q = jQuery(this.questionContainer), labels = q.find("ul.labels");
q.find(".statement-container").each(function() { labels.clone().insertAfter(jQuery(this)); });
labels.hide();
});