Hi, 

I have not managed to rotate the axes label text when generating a 3D plot, 
while in 2D everything works just fine. Here's a short snippet to demonstrate:

import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D

fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')

ax.set_zlabel('label text flipped', rotation=45)

ax.azim = 225

plt.show()


I've tried other commands like:
ax.w_zaxis.set_label_text(r'$\left ( \frac{R}{R_{ref}} \right )^{2}$', 
rotation='vertical')
without success. I would prefer not to use a solution like 
"pathpatch3d_demo.py" because then I need to find the location separately. Any 
suggestions?


Cheers,
Sami


------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and 
threat landscape has changed and how IT managers can respond. Discussions 
will include endpoint security, mobile security and the latest in malware 
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to