Say, I am using:
from mpl_toolkits.axes_grid.axislines import SubplotZero
Like this:
fig = plt.figure()
ax1 = SubplotZero(fig,111)
fig.add_subplot(ax1)
ax1.axis["xzero"].set_axisline_style("-|>")
ax1.axis["xzero"].set_visible(True)
ax1.axis["yzero"].set_visible(False)
Now, I would like to set the x axis tick labels to actually "increase" in
the positive as well as the negative directions...How to do that? I can't
even seem to find the xticklabels in this object, in the first place.
Please advise.
Germán
--
View this message in context: http://matplotlib.1069221.n5.nabble.com/SubplotZero-with-xticklabels-increasing-in-both-directions-tp40033.html
Sent from the matplotlib - users mailing list archive at Nabble.com.
|