Monday, May 20, 2024
 Popular · Latest · Hot · Upcoming
175
rated 0 times [  182] [ 7]  / answers: 1 / hits: 68590  / 7 Years ago, fri, september 29, 2017, 12:00:00

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


More From » css

 Answers
17

I'm using react and I just added the following snippet to my Table component's .css



.ag-header-cell-label {
justify-content: center;
}


I'm overriding the .css class class from ag-grid which I found via devtools inspection, and discovered it's using flexbox for display.



See example (not react but same concept): https://embed.plnkr.co/O3NI4WgHxkFiJCyacn0r/


[#56351] Tuesday, September 26, 2017, 7 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
arthur

Total Points: 729
Total Questions: 107
Total Answers: 109

Location: China
Member since Mon, Aug 22, 2022
2 Years ago
;