My goal is to set a minimum height of 40px for each ag-grid row while allowing dynamic height for rows exceeding this minimum.
this.gridOptions = {
/* rowHeight : 40, */
headerHeight: 100,
pagination: true,
enableSorting: true,
enableColResize: true,
rowDeselection: true,
suppressHorizontalScroll: false,
autoHeight: true
};
gridOptions.autoHeight enables dynamic height adjustments, but setting gridOptions.rowHeight or using getRowHeight(params) to establish a default minimum height overrides the autoHeight feature. Is there a solution to this issue?