GroupCaptionCall and color

I have a gridgroupingcontrol which is bound to a dataset with three tables ("A","B","C"). Now I wan to set the background color of ther GroupCaption of each table. I do the following: GridTableDescriptor childTD = grGrCo_SeqDef.GetTableDescriptor("B"); childTD.Appearance.GroupCaptionCell.BackColor = Color.Red; But the GroupCaption remains grey - the only thing I can see is a small red colored rectangle around the group caption - what''s wrong with the code above? Greetings Franz

1 Reply

AD Administrator Syncfusion Team August 23, 2005 07:14 PM UTC

Are you using themed drawing? If so, then you cannot set backcolor unless you turn off the themed drawing. childTD.Appearance.GroupCaptionCell.Themed = false;

Loader.
Up arrow icon