I am utilizing the EnableSumary for a wingrid.. I have formatted several of the columns.. but when i use the summary tool.. i don't get those formats applied.. is there a way to do this?
So for example I go through and set a column format like so..
UltraGridcolumn.Format = "#,##0.000";
All of the data is then formatted correctly in the grid.. however, when I click the Summary E in the column Header.. the number listed is not fomatted.. is there a way to format this Summary Number?
It looks like this...
ID Header sum = 706271 2565.0002 2911.0003. 1784.000
etc...
The SummarySettings has it's own DisplayFormat property separate from the Format of the column.
can you give me some code on how to set it?
all I could find was
grid.DisplayLayout.Override.SummaryValueAppearance and I cant specify a column for this.
I set the column with
grid.DisplayLayout.Bands[0].Columns[colName].Format = "###,###,###,###,###.##";