SMART datagrid v.1 > Classes > GridColumn

Back  Forward

DataLudi.GridColumn.fillHeight  property

Relative height of column cell within group cell. 

When heightMeasurer of grid is "fixed", if specify this value as greater than 0, it will relatively distribute the remaining height after calculating the cell height of columns in which has not specified this property value among column group including this column to column cells in which has specified this value. 

Defaults to 0.

Getter
function fillHeight(): Integer
Setter
function setFillHeight(value: Integer)
Code -1
    var columns = [{
        name: 'person',
        layout: 'vertical',
        columns: [{
            name: 'name',
            fillHeight: 1
        },
        ...
        ]
    },
    ...
    ];
    grid.setColumns(columns);
See Also
heightMeasurer
height
Examples
Column Heights
Row Heights