Adjusting space between scale points for a matrix | XM Community
Skip to main content
Solved

Adjusting space between scale points for a matrix

  • January 25, 2024
  • 2 replies
  • 123 views

Forum|alt.badge.img+1

Hi,

I wonder if there is a way to adjust the space between scale points so they all evenly spaced? Right now, it seems scale points with longer text will have a larger space in between (see below). 

 

Thank you in advance for your help! 

Best answer by Shashi

 We can evenly space the columns using below JS but then scale points may overlap with each other:

jQuery("#"+this.questionId+" table.ChoiceStructure").css("table-layout","fixed");

 

2 replies

Shashi
Level 8 ●●●●●●●●
Forum|alt.badge.img+34
  • Level 8 ●●●●●●●●
  • 654 replies
  • Answer
  • January 26, 2024

 We can evenly space the columns using below JS but then scale points may overlap with each other:

jQuery("#"+this.questionId+" table.ChoiceStructure").css("table-layout","fixed");

 


Forum|alt.badge.img+1
  • Author
  • 3 replies
  • January 27, 2024

Thank you so much @Shashi for your help! I really appreciate it! It worked!