Articles in this section
Category / Section

How to set different colors for the GroupCaption Rows based on the Columns the data is grouped by?

1 min read

 

To set the color of GroupCaption Cell based on the column the data is grouped by, the particular column has to be accessed by FindByMappingName and the GroupCaptionCell property of the that particular column has to be set different values. Please refer the below code snippet which illustrates this:

C#

//Set color of GroupCaption Cell to Red when grouped by Col2

this.GridGroupingControl1.TableDescriptor.Columns.FindByMappingName("Col2").GroupByAppearance.GroupCaptionCell.BackColor = Color.Green;

//Set color of GroupCaption Cell to Red when grouped by Col4

this.GridGroupingControl1.TableDescriptor.Columns.FindByMappingName("Col4").GroupByAppearance.GroupCaptionCell.BackColor = Color.Red;

VB

'Set color of GroupCaption Cell to Red when grouped by Col2

Me.GridGroupingControl1.TableDescriptor.Columns.FindByMappingName("Col2").GroupByAppearance.GroupCaptionCell.BackColor = Color.Green

'Set color of GroupCaption Cell to Red when grouped by Col4

Me.GridGroupingControl1.TableDescriptor.Columns.FindByMappingName("Col4").GroupByAppearance.GroupCaptionCell.BackColor = Color.Red

Sample:

http://help.syncfusion.com/support/samples/kb/Grid.Web/6.1.0.34/GGCRApp/CRApp.zip

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied