Posted 25 May 2010 Link to this post
Posted 26 May 2010 Link to this post
You can use the ShowHeaderAggregates property of our group rows to hide the aggregates.
<
Grid.Resources
>
Style
x:Key
=
"MyCustomGroupRowStyle"
TargetType
"telerik:GridViewGroupRow"
Setter
Property
"ShowHeaderAggregates"
Value
"False"
/>
</
telerik:RadGridView
GroupRowStyle
"{StaticResource MyCustomGroupRowStyle}"
Hope this helps.
Posted 16 Jul 2010 Link to this post
Style s = new Style(typeof(GridViewGroupRow));
Setter newSetter = new Setter(GridViewGroupRow.ShowHeaderAggregatesProperty, false); s.Setters.Add(newSetter); s.Seal();
s.Setters.Add(newSetter);
s.Seal();
this.RadGridView1.GroupRowStyle = s;
Posted 12 Dec 2012 Link to this post