Hi,
I successfully added a custom summary at the bottom of my grid.
But I want to change the display format.
I mean it is displaying like summary = 25 where I want to show them only 25 in the cell.
How to do it?
Let me know.
Thanks
Nagarjun.
Use the DisplayFormat property on the SummarySettings.
SummarySettings summarySettings = band.Summaries.Add(...);summarySettings.DisplayFormat = "{0}";