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 muchBest Regards
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