kendo ui grid - header in the bold ?.

1 Answer 1153 Views
Charts General Discussions Grid Scheduler
alex
Top achievements
Rank 1
alex asked on 15 Jun 2021, 12:15 PM | edited on 15 Sep 2021, 01:54 PM

Hello,

 

I tried to add this style but do not see any change. How to have the header for the grid in bold.

.k-grid-header {
    font-weight: bold!important;    
}

thanks

alexsunny

Lance | Senior Manager Technical Support
Telerik team
commented on 15 Sep 2021, 01:50 PM | edited

Alex, your account has edited this question to include hyperlinks to spam/malicious sites. I have deactivated your account to prevent further malicious behavior. If this was not done by you, please update your Telerik account credentials and contact us at telerik.com/contact to have it reactivated.

1 Answer, 1 is accepted

Sort by
0
Hetali
Telerik team
answered on 15 Jun 2021, 10:01 PM

Hi Alex,

In order to style the Kendo UI Grid Header, you can use either of the following methods:

1. headerStyle property

<kendo-grid [data]="gridData">
  <kendo-grid-column field="ProductID" [headerStyle]="{ 'font-weight': 'bold' }">
  </kendo-grid-column>
</kendo-grid>


2. headerClass property

<kendo-grid [data]="gridData">
  <kendo-grid-column field="ProductID" [headerClass]="{ gridHeader: true }">
  </kendo-grid-column>
</kendo-grid>

tr .gridHeader {
  font-weight: bold;
}


3. k-grid-header class - To style the header locally, please make sure to set the encapsulation to ViewEncapsulation.None.

import { Component, ViewEncapsulation } from '@angular/core';

@Component({
  styles: [`
    .k-grid-header {
      font-style: italic;
    }
  `],
  encapsulation: ViewEncapsulation.None
})


In this StackBlitz example, I have styled the Kendo UI Grid Header using the above three methods.

I hope this information helps. Please let me know if I can further assist you.

Regards,
Hetali
Progress Telerik

Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.

Tags
Charts General Discussions Grid Scheduler
Asked by
alex
Top achievements
Rank 1
Answers by
Hetali
Telerik team
Share this question
or