This question is locked. New answers and comments are not allowed.
Hi,
I'm using the following format for displaying value:
gridColumn.AggregateFunctions.Add(new SumFunction() { SourceField = string.Format("DataPoints[{0}]", measure), Caption = "Sum:", ResultFormatString = "{}{#.##}", SourceFieldType = Type.GetType("System.Double") });
I would like to use just 2 decimal places but I'm not sure what's being used under the hood! It never brings any value!
for e.g if the sum is 23333.567899 then I would like to display 23333.56 or 23333.57
Thanks,Rama
I'm using the following format for displaying value:
gridColumn.AggregateFunctions.Add(new SumFunction() { SourceField = string.Format("DataPoints[{0}]", measure), Caption = "Sum:", ResultFormatString = "{}{#.##}", SourceFieldType = Type.GetType("System.Double") });
I would like to use just 2 decimal places but I'm not sure what's being used under the hood! It never brings any value!
for e.g if the sum is 23333.567899 then I would like to display 23333.56 or 23333.57
Thanks,Rama