Re: [Matplotlib-users] Set X,Y,and Z data for a pcolormesh

2014-04-04 Thread James Andrew Venning
This worked brilliantly! Thank you so much! Secondary question now, is this: I have a contourf and a polygon made with ax.add_collection3d(a3.art3d.Poly3DCollection(verts, facecolors=[.5,.5,.5], linewidths=1,edgecolor='k',zorder=0)) How do I change it so the contourf is on top of the polygon? By

Re: [Matplotlib-users] Question about copy_from_bbox

2014-04-04 Thread iMichka
Hi thanks for the help, this is exactly what I needed. I updated the code in my app and it worked. Some minor observations though : - This does not play well with tight_layout. I think tight_layout tries to readjust the plots even after the singleShot call. So I needed to disable it. - I have plo