Category / Section
How to set the backcolor of the GroupCaptionSummaryCell in WinForms GridGroupingControl?
1 min read
Apply backcolor of group caption
To set the backcolor of the GroupCaptionSummaryCell, you can use the interior property of the GroupCaptionSummaryCell. Refer to the following code.
C#
this.gridGroupingControl1.Appearance.GroupCaptionSummaryCell.Interior = new BrushInfo(Color.FromArgb(255, 231, 162));
VB
Me.gridGroupingControl1.Appearance.GroupCaptionSummaryCell.Interior = New BrushInfo(Color.FromArgb(255, 231, 162))
Note:
The caption summary can be enabled by using the Grid [Parent/child group options]’ShowCaptionSummaryCells’ property.
Samples:
Reference link: https://help.syncfusion.com/windowsforms/classic/gridgroupingcontrol/summaries