Hello,
Im trying to get the sums shown in the footer of my grid. Works fine but when doing it using the aggregate functions it adds the text "SUM: " infront of the number.
How do i remove this?
Code im using to set the footer sums
Im trying to get the sums shown in the footer of my grid. Works fine but when doing it using the aggregate functions it adds the text "SUM: " infront of the number.
How do i remove this?
Code im using to set the footer sums
protected void RadGrid_Months_DataBound(object sender, EventArgs e)
{
foreach (GridBoundColumn col in RadGrid_Months.MasterTableView.AutoGeneratedColumns)
{
if(col.UniqueName != "Namn")
col.Aggregate = GridAggregateFunction.Sum;
}
}