SMART datagrid v.1 > Classes > DisplayOptions

Back  Forward

DataLudi.DisplayOptions.variableRowHeight  property

When it does not contain the column group of vertical layout which has more than one child columns, if specify as true, you can individually differentiate the height of each data row. 

Defaults to false.

Getter
function variableRowHeight(): Boolean
Setter
function setVariableRowHeight(value: Boolean)
Code -1
    grid.setOptions({
        display: {
            rowResizable: true,
            variableRowHeight: true
        }
    });
Code -2
    grid.setDisplayOptions({
        rowResizable: true,
        variableRowHeight: true
    });
Code -3
    grid.displayOptions().setVariableRowHeight(true);
See Also
rowResizable
fixedRowResizable
GridBase.setRowHeight
Examples
Row Heights