I was trying to set the Row Height of a Summary Row. I tried to do it through a Style, which didn't change the overall height of the row. I know it is possible to do with normal rows. We use the RowHeight property for normal rows.
Hi,
It was an oversight that there isn't a RowHeight property on the SummaryRowSettings, however, you can work around it by setting the style for the summary row:
Style s = new Style(typeof(SummaryRowCellControl));
s.Setters.Add(new Setter(SummaryRowCellControl.HeightProperty, 100));
this.grid.SummaryRowSettings.Style = s;
-SteveZ