This question is locked. New answers and comments are not allowed.
Hi,
I have two aggregates on my raggridview:
My column1 is define first in the column list, so when I group a column, the Count function is displayed first.
Total = 25 , Sum = 50
I want to switch the position, and I want the Sum first, how can I do that ?
Sum = 50 , Total = 25
Thank you !
I have two aggregates on my raggridview:
column1.AggregateFunctions.Add(new CountFunction { ResultFormatString = "Total = {0}" });column2.AggregateFunctions.Add(new SumFunction { ResultFormatString = "Sum= {0}" });My column1 is define first in the column list, so when I group a column, the Count function is displayed first.
Total = 25 , Sum = 50
I want to switch the position, and I want the Sum first, how can I do that ?
Sum = 50 , Total = 25
Thank you !