Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

answered 8 years ago

kcrisman gravatar image

This is definitely possible using the matplotlib object underlying the plot, or even by hacking the underlying Sage code that tells it to go there. See plot/graphics.py, esp. lines like

            subplot.spines['right'].set_visible(False)
            subplot.spines['left'].set_position(('outward',10))
            subplot.yaxis.set_ticks_position('left')
            subplot.yaxis.set_label_position('left')

which should give you an idea of what matplotlib stuff to fiddle with.