Hello there,
In my project, I am utilizing manual column width resizing. To begin, I pass the width of each column as the number of columns divided by the table width. Now, when I try to make a column wider, the column width gets smaller; however, when I try to make a column wider, the column width stays the same, the column I’m expanding should only expand, and the scrollbar should become active.
also when horizontal scrollbar is active I am able to expand the column width
Please check the below code
this.container = document.getElementById(this.config.uuid);
this.hot = new Handsontable(this.container, {
data: getData(),
width: parentElement.width - 6,
height: getFormattedHeight(),
colWidths: setColWidth,
stretchH:‘all’,
manualColumnMove: true,
manualRowMove: true,
manualColumnResize:true,
manualRowResize: true,
})