Modify height of rows and header in grid

Is there any way to modify height of rows and headers in grid component?

Row height can be modified in type property:

view:“grid”,
type:{
height:30
},

The header height should be set in both grid configuration in css class:

.dhx_grid_header{ height: 30px; line-height: 30px; }


view:“grid”,
headerHeight:30,