is there any chance to double size the height of the TreeSummary element with the normal grid row (leaf) elements (see screenshot)!?
The transformation goes over .b-grid-row, which is default:
$grid-row-height: 45px !default from variables.scss
To adjust the height of the TreeSummary row separately from the leaf rows, you can use the getRowHeight config in your grid setup. This allows you to specify different heights for different types of rows. Here's an example of how you might implement this:
new Grid({
getRowHeight(record) {
if (record.isTreeSummary) {
return 90; // Double the default height for TreeSummary rows
}
return 45; // Default height for leaf rows
}
});
Make sure to replace record.isTreeSummary with the appropriate condition to identify your TreeSummary rows.
For more details, you can refer to the getRowHeight config documentation.