Status: New Owner: ---- Labels: Type-Defect Priority-Medium
New issue 945 by cunningh...@gmail.com: Truncating right yAxis labels in EyeSee http://code.google.com/p/moose-technology/issues/detail?id=945
Charts made look fine in the browser, but if you export to PNG (or other formats), any labels axis values on a right axis will be truncated.
It should instead keep all drawing within the bounds of the canvas being drawn on - I believe EyeSee is drawing outside of its bounds (allowed in Pharo, interstingly, so you don't see the effects except when exporting).
to reproduce: values := #( 1 5 10 40 70 100). chart := ESDiagramRenderer new. (chart verticalBarDiagram) rightYAxis; y: #value; yAxisLabel: 'Right Label'; regularAxis; preferredAxisMaxY: 111; models: values; yourself. chart open
then export to PNG (or GIF). Look at that PNG, and you'll see the issue.
Please fill in the labels with the following information: * Type-Defect * Component-EyeSee
Comment #1 on issue 945 by usman.bh...@gmail.com: Truncating right yAxis labels in EyeSee http://code.google.com/p/moose-technology/issues/detail?id=945
Tx Chris for reporting this. I remarked that too recently but didn't have time to report. Can someone have a look, plz?
Updates: Status: Fixed Cc: usman.bh...@gmail.com
Comment #2 on issue 945 by andreho...@gmail.com: Truncating right yAxis labels in EyeSee http://code.google.com/p/moose-technology/issues/detail?id=945
Just fixed that.
=======
- Fixed Issue 945 + related issues on exporting the canvas.
- Some cleaning.
- Updated call in ESCanvas>>exportWith:extension:
from:
"directoryName pathName, FileSystem pathNameDelimiter asString, fName"
to:
"directoryName fullName, FileSystem disk delimiter asString, fName"
Comment #3 on issue 945 by andreho...@gmail.com: Truncating right yAxis labels in EyeSee http://code.google.com/p/moose-technology/issues/detail?id=945
(No comment was entered for this change.)
Attachments: EyeSee-2013-06-14-1504.png 4.6 KB
Thank you! This fixes the problem - it nows looks wonderful when exported.
-Chris
On Fri, Jun 14, 2013 at 6:06 AM, moose-technology@googlecode.com wrote:
Comment #3 on issue 945 by andreho...@gmail.com: Truncating right yAxis labels in EyeSee http://code.google.com/p/**moose-technology/issues/**detail?id=945http://code.google.com/p/moose-technology/issues/detail?id=945
(No comment was entered for this change.)
Attachments: EyeSee-2013-06-14-1504.png 4.6 KB
-- You received this message because this project is configured to send all issue notifications to this address. You may adjust your notification preferences at: https://code.google.com/**hosting/settingshttps://code.google.com/hosting/settings ______________________________**_________________ Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/**mailman/listinfo/moose-devhttps://www.iam.unibe.ch/mailman/listinfo/moose-dev
Tx André.
On Fri, Jun 14, 2013 at 6:47 PM, Chris Cunningham cunningham.cb@gmail.comwrote:
Thank you! This fixes the problem - it nows looks wonderful when exported.
-Chris
On Fri, Jun 14, 2013 at 6:06 AM, moose-technology@googlecode.com wrote:
Comment #3 on issue 945 by andreho...@gmail.com: Truncating right yAxis labels in EyeSee http://code.google.com/p/**moose-technology/issues/**detail?id=945http://code.google.com/p/moose-technology/issues/detail?id=945
(No comment was entered for this change.)
Attachments: EyeSee-2013-06-14-1504.png 4.6 KB
-- You received this message because this project is configured to send all issue notifications to this address. You may adjust your notification preferences at: https://code.google.com/**hosting/settingshttps://code.google.com/hosting/settings ______________________________**_________________ Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/**mailman/listinfo/moose-devhttps://www.iam.unibe.ch/mailman/listinfo/moose-dev
Moose-dev mailing list Moose-dev@iam.unibe.ch https://www.iam.unibe.ch/mailman/listinfo/moose-dev
Comment #4 on issue 945 by usman.bh...@gmail.com: Truncating right yAxis labels in EyeSee http://code.google.com/p/moose-technology/issues/detail?id=945
tx André :)