I am working with radgrid with winforms 2.0 . I am facing problem to summaries column which i grouped. I wanted to show summary of the group column next to grouped column name. Does radgrid support this functionlity ? if yes how ? if No when will i get it ?
Thanks Nicky
1 Answer, 1 is accepted
0
Dwight
Telerik team
answered on 07 Sep 2007, 07:55 AM
Hi Nicky,
Our grid supports aggregates through the GroupByExpressions in the GridViewTemplate. Here is a sample code snippet:
radGridView1.MasterGridViewTemplate.GroupByExpressions.Add("ShipName, sum(Quantity) TotalSold Group By ShipName");
You can also check the Grouping example in the RadGridView section of our QSF.
If you have further questions, we will be glad to help.