Very odd conditions, but I have a list of columns which should be hidden initially. I use the following to hide them:
_.forEach(columnsConfig, function (c, idx) {
if (c.hdn === true) {
spreadSheet.activeSheet().hideColumn(idx);
}
});
However, this seems to cause the header row's (row 1) height to multiply. See screenshot, thanks.