Hi Nick,
1, However we upgraded the GridVisualStyles to Office2007Blue, and now we cannot do ANY customization of this column.
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
When you set the GridVisualStyles property, it will override the BackColor property of the header cells.
To workaround this, you can set the celltype to Static, in addition to setting the BackColor.
Here is the code snippet.
gridControl1[1, 0].BackColor = Color.Yellow;
gridControl1[1, 0].CellType = "Static";
To change the cell, back to the themed appearance, change the celltype to Header.
gridControl1[1, 0].CellType = "Header";
2, Is it possible to render a little icon in this column instead?
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
You can achieve this in two ways.
1, You can make the header cell to static cell and asign the icon to it by using ImageList and ImageIndex properties.
For more details, please refer to this related knowledge base article.
How do I include an icon in the column header for a GridControl and a GridDataBoundGrid?2, Second way is to draw the icon on the header cell using Graphics.DrawImage method. For this you can use DrawCell event or CellDrawn event, which will be fired while drawing each cell in the grid. From the event argument you can check for the rowindex and column index to draw icons only on the required header cells.
Please refer to the following related forum threads.
http://www.syncfusion.com/support/Forums/message.aspx?MessageID=23698http://www.syncfusion.com/support/Forums/message.aspx?MessageID=53422Best Regards,
Saravanan