Hello. I have seen same topic about this problem, but there is no decision for my problem.
- “handsontable-pro”: “^1.15.0”
- “vue-handsontable-official”: “^1.0.0”
I have the following problem.
with default CSS & wordWrap: true, I have this situation
The text does not fit the width of the cell and it is simply clipped
But, if I make some changes in CSS rules:
.handsontable {
th {
white-space: normal !important;
word-wrap: break-word;
}
}
Now text is totally fine, but now I have another roblem with th-cells height:
Is there any default methods or ways to wrap text in headers and at the same time keep the normal height of the cells ?