ultraWinGrid column summaries
In the InitializeLayOut event of the ultraWinGrid I added the following code to calculate the column summaries for two of the columns. Both the columns populated with the double values from dataset.
this.ugrid.DisplayLayout.B
ands[0].Su
mmaries.Ad
d(SummaryT
ype.Sum, this.ugrid.DisplayLayout.B
ands[0].Co
lumns["cmf
"]);
this.ugrid.DisplayLayout.B
ands[0].Su
mmaries.Ad
d(SummaryT
ype.Sum, this.ugrid.DisplayLayout.B
ands[0].Co
lumns["gcd
"]);
I need to format the column summary value with the following format.
summary.DisplayFormat = "{0:###,###,##0}"
Pls give me an idea how to format the summary value for the above 2 columns.
Thank You,
Kavya
Start Free Trial