This code
if
(AddSummary)
{
Infragistics.Win.UltraWinGrid.
SummarySettings summary = grid.DisplayLayout.Bands[0].Summaries.Add(ugcol.Key, Infragistics.Win.UltraWinGrid.SummaryType.Sum, ugcol, SummaryPosition.UseSummaryPositionColumn);
summary.DisplayFormat =
"{0:#,##}";
summary.Appearance.TextHAlign = Infragistics.Win.
HAlign.Right;
}
creates a summary on one grid at top right below column headers but in another grid it places it at bottom. Why? and how do I fix it?
See the SummaryDisplayArea property.
Thanks that seemed to do the trick