Hi Frank,
Thanks for contacting Syncfusion Support.
There is no default support for showing the Caption at the
end of the Grid. But it can be achieved by having the simple workaround. To
show the caption text at the end of the grid, need to customize the GroupFooter
section (which will be displayed at the end of the table). Please refer
to the following code example,
Code Example:
//Display the GroupFooter cell
this.gridGroupingControl1.TopLevelGroupOptions.ShowGroupFooter
= true;
//Set the caption text to be displayed
String CaptionText = this.gridGroupingControl1.TableDescriptor.Name
+ ":" + this.gridGroupingControl1.Table.Records.Count
+ "
Items";
this.gridGroupingControl1.Appearance.GroupFooterSectionCell.CellValue
= CaptionText;
//Disable the editing
this.gridGroupingControl1.Appearance.GroupFooterSectionCell.CellType
= GridCellTypeName.Static;
//Set the height of the GroupCaption
this.gridGroupingControl1.TableOptions.GroupFooterSectionHeight
= 20;
Sample:
http://www.syncfusion.com/downloads/support/forum/120301/ze/CS1915058535
Regards,
Adhi