How can I center the text in the headers for an AG-grid control?

前端 未结 9 1239
长情又很酷
长情又很酷 2021-02-19 00:22

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

9条回答
  •  春和景丽
    2021-02-19 00:45

    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.

提交回复
热议问题