Hello,
We are using the Ultra Grid (version 10.2) in our current project and we are getting visual inconsistencies.
To reproduce the visual bug:
Add a UltraGrid to the form and paste this line in the form initialization:
ultraGrid1.DataSource = new List<string> { "rrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr",
"this test will not make the visual glitch" };
You should see in the first row a change in the character spacing after around 33 characters.
See image below:
If you need any other assistance do not hesitate to ask.
Hi,
I had this issue in UltraGrid
Now, the issue is fixed with the property you suggest and the font is consistent all through the grid. But, after this change, it had impacted few places as below
1) If the grid has groups (i.e., grids with Parent, child nodes), then child element and parent element are at same level. Generally, the child elements are slightly indented inside parent element before this change (See below screen. Left side is ultragrid with GDIplus, Right side is with GDI)
2) The header text in my grid is bold. So, the tool tip of the grid header coming bold and looks like it is shaded out. This behaviour is not seen when rendering mode is GDIPlus (See below screen. Left side is ultragrid with GDIplus, Right side is with GDI)
The above two behaviours are not seen if I have textrenderingmode = GDIPlus. This happens only if my grid text rendering mode is GDI.
Please suggest me a solution so that the font can be consistent and it will not have the above impacts.