New to Kendo UI for Angular? Start a free 30-day trial
Angular Data Grid Styling Columns
Updated on Feb 5, 2026
The Angular Grid enables you to customize the appearance of the different column parts and change their default layout.
To apply custom styling to the columns of the Grid, you can customize these parts:
Customizing Column Header
You can add a custom CSS class or style to a column header by using the following ColumnComponent options:
headerClass—Specifies the class to be added to the header cell.headerStyle—Specifies the styles to be added to the header cell.
Loading ...
Version
5.0.0of the Grid introduced some breaking changes in the column header rendering of the sortable Grid. The main changes are:
- The whole cell content is wrapped inside a
<span>element with ak-cell-innerclass; - The title text is wrapped inside a
<span>element with ak-column-titleclass; - The whole cell content relies on CSS flexbox for positioning.
Due to these breaking changes, some scenarios require slightly different CSS rules for sortable and non-sortable Grid. For example, right align of header text:
css
/* Sortable Grid */
.k-cell-inner > .k-link {
justify-content: flex-end;
}
/* Non-Sortable Grid */
.k-grid th {
justify-content: right;
}
Customizing Column Footer
You can set custom styles or add CSS classes to a column footer by using the following ColumnComponent options:
footerClass—Specifies the class to be added to the footer cell.footerStyle