how to put grid under the plot lines?

Pl see picture below. The grid always shows on top of the plot lines. Is it
possible to put it below?

Thanks!

http://www.nabble.com/file/p23474184/gridlines.gif

···


View this message in context: http://www.nabble.com/how-to-put-grid-under-the-plot-lines--tp23474184p23474184.html
Sent from the matplotlib - users mailing list archive at Nabble.com.

When creating the axes or subplot, set axisbelow=True

  ax = fig.add_subplot(111, axisbelow=True)

There is an rc param 'axes.axisbelow' to change the default behavior
-- http://matplotlib.sourceforge.net/users/customizing.html

JDH

···

On Sun, May 10, 2009 at 4:22 PM, oh42 <jagmosi@...9...> wrote:

Pl see picture below. The grid always shows on top of the plot lines. Is it
possible to put it below?

awesome! exactly what i needed. thanks a bunch!

···


View this message in context: http://www.nabble.com/how-to-put-grid-under-the-plot-lines--tp23474184p23494506.html
Sent from the matplotlib - users mailing list archive at Nabble.com.