SMART datagrid v.1 > Classes > GridHeader
The height of grid header in pixels.
If specify this value as greater than 0, the height will be determined by a greater one among minHeight and this value.
If it is 0, the height will be calculated and set internally based on Style.
Defaults to 0.
grid.setHeader({
height: 30
});
// Or, by each property
grid.header().setHeight(30);
// Or, by property path
grid.setProperty('header.height', 30);