SMART datagrid v.1 > Classes > GridColumn
When heightMeasurer of grid is "fixed", if specify this value as greater than 0, even if change the height of column group including this column, it will still maintain the specified height as much as possible.
Defaults to 0.
var columns = [{
name: 'person',
layout: 'vertical',
columns: [{
name: 'name',
height: 30
},
...
]
},
...
];
grid.setColumns(columns);