setRowHeight

sets the height of the spreadsheet row

void setRowHeight(id|array id,number|string height);
idid|arraythe row id or an array of ids
heightnumber|stringthe height in pixels or "auto"

Example

$$("ssheet1").setRowHeight(rowId, 50);

Details

In order to adjust the row height to its content pass "auto" as second parameter.

$$("ssheet1").setRowHeight(rowId, "auto");

You can pass an array of ids as the first parameter like the following:

$$("ssheet1").setRowHeight([3, 6], "auto");

In this case the rows from 3 to 6 will adjust their height to the content inside.

See also
Back to top
If you have not checked yet, be sure to visit site of our main product Webix best ui framework and page of spreadsheet product.