How can I center the text in the headers for an AG-grid control? I have tried using cellstyle and cellclass in the column definition but that did not work. Thank you
I'm using Angular 8 and AG-Grid is nested deep in some other component.
I had to do this in order to make it work.
.ag-header-group-cell-label {
justify-content: center !important;
}
And, this strictly needs to be under styles.scss
file and not in the component scss file. Or else, it will not work.
Hope this helps someone.