Screen shot added.
please do the needful
Hi Experts, any pointer to this Issue please.
-Thanks
Amjath
similarly for SummaryDisplayAreas.InGroupByRows can we set the background color to transparent, because currently Im getting 2 color shades inside the Groupby band whcih was not looking good.
Hi,
I don't know what's causing that. Can you post a small sample project demonstrating the issue?
Hi Mike, Mitko
You guys are really awesome.
Its working fine now.
With Thanks & Regards
Hello Amjath,
I was able to reproduce your issue thanks to the latest sample you uploaded. To make the summaries in the group by box have transparent background color, you could set BackColorAlpha property of SummaryValueAppearance, please see the code below:
ultraGrid1.DisplayLayout.Override.SummaryValueAppearance.BackColorAlpha = Alpha.Transparent;
As for the text in the group by row, you could avoid this behavour by setting GroupBySummaryDisplayStyle to SummaryCellsAlwaysBelowDescription. Summaries are displayed as cells in group-by row. These summary cells are positioned according the SummarySettings’ SummaryPosition settings. All the summary cells are positioned below the description so they do not conflict with the group-by row description. You could use code like:
ultraGrid1.DisplayLayout.Override.GroupBySummaryDisplayStyle = GroupBySummaryDisplayStyle.SummaryCellsAlwaysBelowDescription;
If you have any additional questions don’t hesitate to ask them.
Hi Mike,
Thats what i saying if you group by with 5 column as well, you will find the mess ups.
please find the attached application, where i grouped by in the program itself.. just run then u can able to see the mess up's.
please let me know if you have any concernss.
With thanks & Regards
I don't understand. Your screen shots show the problem on the very first level. And the sample you attached here has only one level of grouping. So why did you post a sample here that doesn't reproduce the issue?
Anyway, I tried your sample again and this time I grouped by 4 levels and I still do not see any problems with the text.
its working perfectly fine for 3 to 4 levels if you add rth column then you can see these overlapping bahavior.
please do the needful.
and is there any way to make the SummarySetting header with transparent color, its looking very odd by having 2 color insdie the same groupby band.