SMART datagrid v.1 > Classes > GridColumn
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.
var columns = [{
name: 'person',
layout: 'vertical',
columns: [{
name: 'name',
fillHeight: 1
},
...
]
},
...
];
grid.setColumns(columns);