Hi,
I have a UltraWinGrid with summary row. The summary row has caption "Grand Total" and then each of the column has sum. Summary row has in effect two rows, one row containing only the word "Grand Total" and other row containing the sum.
How can I have the entire summary in one row with caption in first cell and sum in other cells.
RPSingh
You can set SummaryFooterCaptionVisible to false to get rid of the extra row.
There's no way to place a caption in the summary row, but you could fake it by adding a summary to a column and using teh DisplayFormat on the SummarySettings to apply a caption to it with no value.
my setting for summary display area is InGroupByRows | BottomFixed | RootRowsFootersOnly. I use the method u suggested and it will show in GroupBy Row. Is it any method to not showing it in GroupBy row but in footer?
Well, yes and no. You can't really hide a summary in place location and not another. But you might be able to acheive what you want using a DrawFilter or CreationFilter. It would not be trivial, though.
If you are not familiar with DrawFilters and CreationFilters, I recommend that you search the Infragistics Knowledge Base for articles and samples. Also, get the Infragistics UIElementViewer Utility. It's a big help when working with UIElements.