HA
haneefm
Syncfusion Team
July 9, 2007 06:08 PM UTC
Hi Code12345,
You can handle the PrepareViewStyleInfo event to set the backcolor of the cell in a grid. Below is a code snippet
private void gridDataBoundGrid1_PrepareViewStyleInfo(object sender, GridPrepareViewStyleInfoEventArgs e)
{
GridDataBoundGrid _grid = sender as GridDataBoundGrid;
if( e.ColIndex > 0 && e.ColIndex <= _grid.Model.Cols.FrozenCount)
{
e.Style.Themed = false;
e.Style.BackColor = Color.Red;
}
}
Best regards,
Haneef