Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1140
Summary Field Text
posted

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.

  • 469350
    Offline posted

    Use the DisplayFormat property on the SummarySettings.

    SummarySettings summarySettings = band.Summaries.Add(...);
    summarySettings.DisplayFormat = "{0}";