Screen shot added.
please do the needful
Hi Experts, any pointer to this Issue please.
-Thanks
Amjath
Hi,
I don't know what's causing that. Can you post a small sample project demonstrating the issue?
Hi Mike,
Thanks a lot for the reply.
please find the attached code snippet which will have both the issues.
please help me to solve both the issues.
With Thanks & Regards
Hi Amjath,
Your sample is referencing a couple of xsd files that are not included in the zip file you posted. They do not appear to be relevant, though, so I just commented them out and I am able to run the sample.
I am not experiencing any problems with it, though. I have attached a screen shot of what it looks like on my machine, and it seems just fine. No overlapping text like in your screen shot. So my guess is that you are just using an older version of the controls and you need to get the latest service release. I'm using the last SR that was released for 10.3.
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.
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.
Hi Mike, Mitko
You guys are really awesome.
Its working fine now.
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.
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