I’m aware that I can set column widths by passing a colWidths
array in the constructor options object. However, doing this disables the automatic column resizing to content.
Is it possible to change the default column width of 50px to something wider (e.g. 80px) while still leaving automatic resizing to (wider) content enabled? I tried overriding the stylesheet with:
.handsontable col, .handsontable col.rowHeader {
width: 80px;
}
… but the column widths appear to be set by an element style so this had no effect: