What steps will reproduce the problem?
import visvis as vv
vv.gcf().enableUserInteraction = False
vv.plot([1,2,5])
What is the expected output? What do you see instead?
No space is reserved for the x- and y- axis
Please use labels and text to provide additional information.
In the Axes() class in axes.py, OnDrawShape() calls
_CorrectPositionForLabels(). However, when user interaction is disabled,
OnDrawShape is never called.
The issue may be fixed by calling _CorrectPositionForLabels() from
_OnDrawInMode. However, this does mean it is called twice when user interaction
is enabled; this may be a performance issue
Original issue reported on code.google.com by r.reil...@gmail.com on 6 Sep 2012 at 12:55
Original issue reported on code.google.com by
r.reil...@gmail.com
on 6 Sep 2012 at 12:55