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...
Also the format string is different "{0:#,##0.000}"
Nick
When you create your summary using Summaries.Add, the Add method returns a SummarySettings object.
SummarySettings summarySettings = band.Summaries.Add(...);
summarySettings.DisplayFormat = "{0:#,##0.000}";