Hi!
I have Summary row in my grid. I add summaries like this:
this.grid.DisplayLayout.Bands[0].Summaries.Add("Timestamp", SummaryType.Minimum, this.grid.DisplayLayout.Bands[0].Columns["Timestamp"], SummaryPosition.UseSummaryPositionColumn);
this.grid.DisplayLayout.Override.SummaryDisplayArea = SummaryDisplayAreas.BottomFixed;
If my summary is the first column in the grid my text goes left. If summary is not the first column it displays ok - see screenshot. Is there any known workaround for this?
The summary lines up with the column and the first column includes the row selectors. I don't think there's any easy way around this.
Once thing you could do is turn off the RowSelectors.
Or you might be able to shift the summary over using a CreationFilter.