I would like to increase the font for rows in an Angular igx-grid. The default is a little too light. I've searched through your forums and don't believe there's an example. Would it be possible to provide one? I'm using IgniteUI v 7.2.3
Thanks,
Jeff
Hello Jeff,
Thank you for posting in our community.
You can change the font size on a component level by targeting the appropriate predefined class:
:host { ::ng-deep { .igx-grid__td-text { font-size: 1.2rem; } } }
Thanks so much. That works great with the exception of a date column with an ng-template. That remains the original size in my grid.