bring plot items to front in matplotlib
April 8th, 2013 by Lawrence David
To adjust the relative ordering of plot items in matplotlib, use the “zorder” variable:
pl.plot(x,y,zorder=1) # plots on bottom
pl.plot(x,y,zorder=10) # plots on top

April 8th, 2013 by Lawrence David
To adjust the relative ordering of plot items in matplotlib, use the “zorder” variable:
pl.plot(x,y,zorder=1) # plots on bottom
pl.plot(x,y,zorder=10) # plots on top