pgfplot의 보조 그리드를 주요 그리드 뒤로 이동합니다.

pgfplot의 보조 그리드를 주요 그리드 뒤로 이동합니다.

나는 보조 그리드 y = const좌표선이 주요 좌표선 앞에 있다는 것을 알았습니다. 보조 그리드를 주요 그리드 뒤로 어떻게 이동할 수 있나요?

\documentclass[tikz]{standalone}
\usepackage{pgfplots}

%===============================================================================
\begin{document}
\noindent
\begin{tikzpicture}
    ]
    \begin{axis}[
            grid = both,
            major grid style={line width=.3pt,draw=brown!75},
            minor tick num = 5,
            minor grid style = {line width=.1pt,draw=brown!10},
           xtick={-6,...,6}, % This one works now
        ]
        \addplot+[blue, no marks, domain={-6:6}] {x^2};
    \end{axis}
\end{tikzpicture}
\end{document}

여기에 이미지 설명을 입력하세요

관련 정보