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
235
Summary row title
posted

I am using a summarysettings type to programmatically add a summary row on a grid.

The display format is "AVG:{0:#,#0.00}

I changed the display format to {0:#,#0.00} to fit the column size (this can't change) but i need somewhere to indicate that this row has the 'Averages'

Can I add the 'Average' label on the very left of the aggregated row?

 

Thanks!

 

 

Parents
No Data
Reply
  • 71886
    Verified Answer
    Offline posted

    Hello,

    I can think of two approaches to do this - with CreationFilter or with changing the footer caption like this:

         e.Layout.Bands[0].SummaryFooterCaption = "AVG";

    I will personally choose the second one, but if you want, you could achieve this with the first approach and place your text wherever you like.

Children
No Data