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.
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'
});