How do I set/modify font color of text in Column Header of GridGroupingControl?.
The color of the text in the Column Header cell can be set or changed via the TextColor property in the GridControl's Appearance.ColumnHeaderCell.
C#
//Set the font color of the Column Header Cell(s) to Red
this.GridGroupingControl1.Appearance.ColumnHeaderCell.TextColor = Color.Red;
VB
'Set the font color of the Column Header Cell(s) to Red
Me.GridGroupingControl1.Appearance.ColumnHeaderCell.TextColor = Color.Red
Sample: