From: John H. <jdh...@ac...> - 2006-02-17 14:05:35
|
>>>>> "Chris" == Chris Seberino <seb...@sp...> writes: Chris> If I'm not mistaken, zorder determines what objects will be Chris> "on top" of what other objects. Chris> I got this working fine for some lines on my plot but it Chris> seems to have no effect on **grid lines**. (I want grid Chris> lines to be *behind* everything.) gridlines are part of the Axis, and do not obey the zorder. But you can put them above or below by setting the axisbelow property of the Axes ax.set_axisbelow(True) JDH |