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!
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.