Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1075
Summary position
posted

 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?

Parents
No Data
Reply
  • 469350
    Offline posted

    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. 

Children
No Data