How to unset the table height?

Tags: #<Tag:0x00007f8b1d9e4be8>

It’s possible to set the table height after creation like so:

$vm.hot.updateSettings({
   height: 300
});

But how can you unset the height?

Setting to undefined doesn’t work, and setting to null is the same as 0 it seems.

Ah! I got it:

$vm.hot.updateSettings({
   height: 'auto'
});

true https://jsfiddle.net/L5oqf4pw/ :slight_smile: