From: Chris S. <seb...@sp...> - 2006-02-17 01:27:36
|
If I'm not mistaken, zorder determines what objects will be "on top" of what other objects. I got this working fine for some lines on my plot but it seems to have no effect on **grid lines**. (I want grid lines to be *behind* everything.) Here is code snippet for grid stuff.... plot_.grid(True) grid_ =3D plot_.get_xgridlines() + plot_.get_ygridlines() pylab.setp(grid_, linestyle =3D "-", color =3D "k",=20 linewidth =3D "0.5", zorder =3D 0.5) Thanks! Chris |