Hello,
I am looking for a way to set the width of the matrix columns.
I tried with Survey({ model: survey, css: myCss }) but it did not work.
I added width to the JSON file like this:
"columns": [
{
"value": "0",
"text": "Not at all (0)",
"width": "150px"
}
…
]
then in my CSS (but I do not want other tables to be affected):
.sv_q_matrix tr td:first-child {
width: 200px;
}
Where in the document or examples is it explained how to do this? I searched everywhere.
Thanks,
Geoffrey