Status: New Owner: ---- CC: andreho...@gmail.com Labels: Type-Defect Priority-Medium Component-EyeSee Milestone-4.6
New issue 755 by tu...@tudorgirba.com: EyeSee form does not properly take into account the size of axis labels http://code.google.com/p/moose-technology/issues/detail?id=755
It seems that the bounds of the form do not take into account the size of the axis labels. Because of this, we get a cropped picture when we export, and we get some refresh problems.
Try the following: (ESExamples new verticalBar7 findDeeplyA: ESCanvas) exportAsPNG
If you inspect the resulting image, you will see that both the bottom labels and the right one gets trimmed.
Updates: Status: Fixed
Comment #1 on issue 755 by andreho...@gmail.com: EyeSee form does not properly take into account the size of axis labels http://code.google.com/p/moose-technology/issues/detail?id=755
I just fixed it. Running the example cited you have whole image exported taking into account the label size.
Comment #2 on issue 755 by tudor.gi...@gmail.com: EyeSee form does not properly take into account the size of axis labels http://code.google.com/p/moose-technology/issues/detail?id=755
It looks good.
Thanks a lot!
Updates: Status: Started
Comment #3 on issue 755 by tu...@tudorgirba.com: EyeSee form does not properly take into account the size of axis labels http://code.google.com/p/moose-technology/issues/detail?id=755
Actually, the problem is still around for the right axis.
In the (ESExamples new verticalBar7 findDeeplyA: ESCanvas) exportAsPNG
you will see that on the right hand side you only see "avg 2" instead of "avg 2006". Could you take a look?
Comment #4 on issue 755 by andreho...@gmail.com: EyeSee form does not properly take into account the size of axis labels http://code.google.com/p/moose-technology/issues/detail?id=755
Yes, indeed. But the problem is no more related to the axis. I will have a look.
Comment #5 on issue 755 by tu...@tudorgirba.com: EyeSee form does not properly take into account the size of axis labels http://code.google.com/p/moose-technology/issues/detail?id=755
Hmm, I think it must be :)
Comment #6 on issue 755 by andreho...@gmail.com: EyeSee form does not properly take into account the size of axis labels http://code.google.com/p/moose-technology/issues/detail?id=755
I mean not related to axis labels size. It's the size of deviationDescription. BTW I will check..
Comment #7 on issue 755 by tu...@tudorgirba.com: EyeSee form does not properly take into account the size of axis labels http://code.google.com/p/moose-technology/issues/detail?id=755
Oh. Actually, I could reproduce the problem only with axis labels, too. So, it should be related to axis as well.
Comment #8 on issue 755 by andreho...@gmail.com: EyeSee form does not properly take into account the size of axis labels http://code.google.com/p/moose-technology/issues/detail?id=755
Could send an example?
Comment #9 on issue 755 by andreho...@gmail.com: EyeSee form does not properly take into account the size of axis labels http://code.google.com/p/moose-technology/issues/detail?id=755
Could you send an example?
compositeDiagram "self new compositeDiagram" | diag1 factory diag2 diag3 factory2 | factory := ESDummyFactory new. factory yValues: #(30000000000 5 15 20 28 24 22 26). factory2 := ESDummyFactory new. factory2 yValues: #(1400000000000000 24 21 11 22 13 43 21). diag1 := (ESDiagramRenderer new lineDiagram) y: #yValue; models: factory buildDummies; regularAxis; rightYAxis; defaultColor: Color blue; axisColor: Color blue; yourself. diag2 := (ESDiagramRenderer new verticalBarDiagram) y: #yValue; regularAxis; axisColor: Color darkGray; defaultColor: Color darkGray; models: factory2 buildDummies; yourself. diag3 := ESDiagramRenderer new. (diag3 compositeDiagram) add: diag2; add: diag1. ^ diag3 open On Mon, Dec 5, 2011 at 12:30 PM, moose-technology@googlecode.com wrote:
Comment #9 on issue 755 by andreho...@gmail.com: EyeSee form does not properly take into account the size of axis labels http://code.google.com/p/moose-technology/issues/detail?id=755
Could you send an example?
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Updates: Status: Fixed
Comment #10 on issue 755 by andreho...@gmail.com: EyeSee form does not properly take into account the size of axis labels http://code.google.com/p/moose-technology/issues/detail?id=755
I just fixed that it is taking into account axis (left and right) labels size and deviationDescription size.