Hi I want to align the text to the center in a give header cell in kendo ui angular grid. when i use headerStyle as below,it does not working.
<kendo-grid-column [headerStyle]="{'text-align': 'center'}" field="Action" title="Action" [width]="180" class="k-text-center" [sticky]="true" [columnMenu]="false"> <ng-template kendoGridCellTemplate let-dataItem> <img *ngIf="!dataItem.EntryIssue" src="../../../../../assets/svg/vpo-toolbar-icons/Group%20651.svg" alt="avatar"> <img *ngIf="dataItem.EntryIssue" src="../../../../../assets/svg/vpo-toolbar-icons/Group 703.svg" alt="avatar"> </ng-template> </kendo-grid-column>