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
465
Changing CellStyle on Summary Cell on GroupBy Row
posted

I am using UltraGrid with GroupBy feature enabled, and I have the following features to allow showing summary cells on the groupby row.

band.Override.GroupBySummaryDisplayStyle = GroupBySummaryDisplayStyle.SummaryCells;
band.Override.SummaryDisplayArea = SummaryDisplayAreas.InGroupByRows;

I also created some custom SummaryCalculators which everything worked as expected, but I was only able to display text within these summary cells.  For example, if a column is a checkbox style column, I would like the summary cell to also be a CheckBox with a summary value that figures out by a custom SummaryCalculator.  If it is an image style column, I want to display an summary image on the summary cell of the column as well.  Is there a way to do that?

Thanks.

Michael