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

Changing gridline colour at runtime.




How to change the colour of gridline at runtime?



Regards,
Ranjan VijayKumar.

1 Reply

NK Neelakandan Kannan Syncfusion Team November 25, 2014 05:58 AM UTC

Hi Ranjan,

 

Thank you for your interest in Syncfusion products.

 

If you want to change the GridLine color dynamically at run time, you can use Borders Property of TableStyle. By using this property you can set Left, Right, Bottom, Top border styles of grid. Please make use of below code and attached sample,

 

private void buttonAdv1_Click(object sender, EventArgs e)

{

this.gridControl1.TableStyle.Borders.Right = new GridBorder(GridBorderStyle.Solid, Color.Red, GridBorderWeight.Thin);

this.gridControl1.TableStyle.Borders.Bottom = new GridBorder(GridBorderStyle.Solid, Color.Red, GridBorderWeight.Thin);

}

 

Please let me know if you have any concerns.

 

Regards,

Neelakandan


Attachment: Sample_GridLine_Changing_f753c48a.zip

Loader.
Live Chat Icon For mobile
Up arrow icon