Is there a way to adjust the header height of the headers in ag-Grid? I would like to increase the height if the title is longer than the column width. I know that I can set the height in the gridOptions, but I want the height to be changed 'on the fly'.
I got this css styling to break the words, it works fine for me,
.ag-header-cell-label {
text-overflow: clip;
overflow: visible;
white-space: normal;
}
but I didn't find a way to change the height.