hi,
Axes3D from mpl_toolkits.mplot3d does not override set_*ticklabels.
this 
bug<http://sourceforge.net/tracker/index.php?func=detail&aid=2874110&group_id=80706&atid=560720>is
about the issue.
to get a crude replacement, i have to do the following:

for x, s in enumerate(ticks):
> ax.text3D(x, -.1, -.5, s)
> for a in ax.w_xaxis.get_ticklabels():
> a.set_visible(False)
>

 is there a way to do better and hack my values into the real tick labels (i
bet they are drawn internally the same as text3D, but there is no way to
access the values)?
------------------------------------------------------------------------------
Free Software Download: Index, Search & Analyze Logs and other IT data in 
Real-Time with Splunk. Collect, index and harness all the fast moving IT data 
generated by your applications, servers and devices whether physical, virtual
or in the cloud. Deliver compliance at lower cost and gain new business 
insights. http://p.sf.net/sfu/splunk-dev2dev 
_______________________________________________
Matplotlib-users mailing list
Matplotlib-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/matplotlib-users

Reply via email to