Take for example the following code:
sage: f = {0:1}
sage: for n in range(100): f[n+1] = sqrt(2.0)**f[n]
sage: line([(n,f[n]) for n in range(50,100)])

Then on the y-Axis every tick number is "2e" except the topmost is
"2".
One can not distinguish y values by their displayed numbers.

Another plot issue:
If you change the aspect ratio, then the displayed numbers (i.e. the
font) get also scaled, and makes it often unreadable.
This can be seen with this code:
sage: l=line([(1,0.5),(2,0.6)])
sage: l.set_aspect_ratio(1)
sage: l

-- 
To post to this group, send an email to sage-devel@googlegroups.com
To unsubscribe from this group, send an email to 
sage-devel+unsubscr...@googlegroups.com
For more options, visit this group at http://groups.google.com/group/sage-devel
URL: http://www.sagemath.org

Reply via email to