Hi
How do I display (turn on) minor ticks on a 3D surface plot using mplot3d / axes3d graph?
I can define the major tickmark locations using:
ax.w_zaxis.set_major_locator(MultipleLocator(10))
Similarly, I'm guessing I can define the the minor ticks using:
ax.w_zaxis.set_minor_locator(MultipleLocator(2))
This appears to define the minor tick locators but doesn't actually turn them on in my plot. How do I turn the minorticks on in my axes3D?
Thanks for your help
Mark