-
Notifications
You must be signed in to change notification settings - Fork 177
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
White lines getting draw on Grid #158
Comments
Have you tried to call "grid.setLineSize(0)" ? |
Yes, When "grid.setLineSize(0)" is called then issue does not observed. But when lineSize is '0' then it caused the problem for resizing the grid. while performing the resizing using mouse drag on grid caption causes problem. It does not works smoothly if line size is 0. It works perfect when grid.setLineSize(1). |
Strange, actually the sizing of grid caption should not depend on lineSize. To detect the sizing area caption component uses "activeAreaSize" property. I have tried test case (set line size to zero) with GridCaption component and have not seen a problem. What does it mean "It does not works smoothly" ? |
White lines are getting draw in grid even if the draw lines is false.
Grid.setDrawLines(false, false)
I can not set line size 0 because it caused the problem for resizing the grid. When line size is 0 then this problem does not occurs but while performing the resize on grid caption causes problem. It does not works smoothly if line size is 0.
refer
How can prevent this white line to be drawn on grid.
I tried to override grids PaintNet() method and kept this as empty. still these line are getting drawn.
What could be the problem ?
Thanks.
The text was updated successfully, but these errors were encountered: