This sample demonstrates how to format alternate rows in a Grouping Grid control.
Features:
Set the Appearance.AlternateRecordFieldCell property of the grouping grid
The appearance property lets you control any aspect of the grid grouping appearance such as cell type, value, background color, foreground color, font, and text color.
The sample is built with a flat data set that has been customized at design-time.
The sample allows you to edit record values and add new records.
// Applying style settings to alternate rows in the grouping grid. this.gridGroupingControl1.Appearance.AlternateRecordFieldCell.Font.Facename = "Arial Black"; this.gridGroupingControl1.Appearance.AlternateRecordFieldCell.Font.Italic = true; this.gridGroupingControl1.Appearance.AlternateRecordFieldCell.Interior =new Syncfusion.Drawing.BrushInfo (System.Drawing.Color.PaleGoldenrod);