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
3045
How can I override the label "Grand Summaries"?
posted

I only have one level of summary. I just want it to say "Totals".

Thanks,

 

Version 9.2

  • 469350
    Verified Answer
    Offline posted


            private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e)
            {
                UltraGridLayout layout = e.Layout;
                UltraGridBand band = layout.Bands[0];        

                band.SummaryFooterCaption = "Totals";
            }