On Sun, May 10, 2009 at 4:22 PM, oh42 <ja...@ya...> wrote:
>
> Pl see picture below. The grid always shows on top of the plot lines. Is it
> possible to put it below?
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
|