Solved
Is there a way i can change the visual of the NPS question?
I would like to trial the scale showing from 10-0 not 0-10. I'm not changing the promotor/passive/detractor numbers.
Best answer by TomG
Two issues with not using the JavaScript approach:
1. You lose the automatic promotor/passive/detractor categorizations
2. You lose the NPS question formatting (i.e., the scale won't be horizontal on a mobile device).
If you manually adjust/swap the scale labels, then it is just three lines of JS code:
```
Qualtrics.SurveyEngine.addOnload(function() {
var labels = jQuery("#"+this.questionId+" tr td.LabelContainer");
var tr = labels.eq(0).closest("tr");
labels.each(function(i) { if(i > 0) tr.prepend(jQuery(this)); });
});
```
View originalLeave a Reply
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.