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
500
Hide Summary Value label in Group-By Row
posted

Hi all!

Simple question. I can I remove the Summary Text added to the Group-By row mark description?

See the image attached.

 

 

My code:

UltraGrid1.DisplayLayout.ViewStyleBand = Infragistics.Win.UltraWinGrid.ViewStyleBand.OutlookGroupBy

            UltraGrid1.DisplayLayout.GroupByBox.Hidden = True

            UltraGrid1.DisplayLayout.Bands(0).SortedColumns.Add("Tarifario", False, True)

 

Thank you so much
Best Regards 

Parents
No Data
Reply
  • 469350
    Verified Answer
    Offline posted

    Hi,

    You can control where the summaries are displayed using the SummaryDisplayArea property on the override.

    In this case, it looks like you want the summaries at the bottom of each group, but not in the GroupByRow. So you can do something like this:


            UltraGrid1.DisplayLayout.Bands(0).Override.SummaryDisplayArea = SummaryDisplayAreas.Bottom

Children
No Data