I was able to lengthen the column headers but is it possible to make the text wrap to the next line instead of just getting cut off?
Hmm... Maybe try add some CSS into your headers:
.handsontable table thead th {
white-space: pre-line;
max-width: /* enter here your max header width */
}
Awesome. Worked like a charm. Thanks.
Related forum post: https://forum.handsontable.com/t/header-word-wrap/209
Most helpful comment
Hmm... Maybe try add some CSS into your headers: