Completed
Last Updated: 11 Sep 2013 04:25 by ADMIN
ADMIN
Georgi I. Georgiev
Created on: 11 Sep 2013 04:25
Category: GridView
Type: Bug Report
0
FIX. RadGridView - GridViewSummaryRow Variance and Standard Deviation functions do not work
To reproduce:
this.grid.Columns.Add(new GridViewDecimalColumn("col"));
for (int i = 0; i < 5; i++)
{
    this.grid.Rows.Add(i);
}

GridViewSummaryItem stDev = new GridViewSummaryItem()
{
    Name = "col",
    Aggregate = GridAggregateFunction.Var // or GridAggregateFunction.StDev
};
var row = new GridViewSummaryRowItem();
row.Add(stDev);
this.grid.SummaryRowsTop.Add(row);

This will throw an exception.
0 comments