I am trying to draw a table using
var table = new Tabulator("#example-table", {
height: "75vh",
});
But, the height is always 75vh
even though contents are less which looks ugly. See the dark gray area below the table.
I tried using the below so that height is never above a value & resizes automatically if less content is there.
var table = new Tabulator("#example-table", {
height: "auto",
maxHeight: "75vh",
});
Suggest me some hack as I coudn't get anthing in documentation.