views:

106

answers:

0

Hey hello,

the problem I'm facing at the moment is the lack of ticks at the corners of the 3D-plots from matplotlib.mplot3d. Say the xaxis ranges from 0 to 10, then only the ticks 2,4,6 and 8 will be displayed. What I'm looking for is a way to format the ticks similiar to pylab:

from pylab import *
plot([1,2,3])
xticks([0, 1, 2], ['a', 'b', 'c'])

I would also be happy, if I could only somehow expand the ticks to the corners. Thank you in advance,

Martin