Is it possible to have both the axis on top and the grid on the very bottom (or somewhere in between some other planes/lines/...) of a plot?
Example figure with axis on top=true but the grid on top is ugly:

Example figure with axis on top=false and the grid looks nice behind the yellow plane, but axes and arrows look bad behind the drawing.
Here is a tiny code example
\documentclass{article} \usepackage{pgfplots}
\begin{document} \begin{tikzpicture}
\begin{axis}[grid=major,axis x line=bottom,axis y line=left] %axis on top
\addplot+[mark=none,fill=yellow,draw=red] {0.1*x^2} \closedcycle;
\end{axis}
\end{tikzpicture} \end{document}
Can anyone put the axis to the top without having the grid on top?
