We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

Customizing the header in GridControl.


How to customize the header appearance at runtime?



Regards,
Ranjan VijayKumar.

1 Reply

MK Muthukumar Kalyanasundaram Syncfusion Team November 25, 2014 09:13 AM UTC

Hi Ranjan,

 

Thank you for your interest in Syncfusion products.

 

If you want to change the header style of row and column in a grid at run time, you can use the “StyleInfo” property. By using this property you can set the header appearance of a grid. Please refer the below code,

 

Code:

 

private void button1_Click(object sender, EventArgs e)

 {

       this.gridControl1.BaseStylesMap["Header"].StyleInfo.BackColor = Color.SkyBlue;

   this.gridControl1.BaseStylesMap["Row Header"].StyleInfo.BackColor = Color.SkyBlue;

   this.gridControl1.Refresh();

 }

 

Please let me know if you have any concerns.

 

Regards,

Muthukumar K


Loader.
Live Chat Icon For mobile
Up arrow icon