pgfplots:addplot3 中仅针对 xy 平面的网格

pgfplots:addplot3 中仅针对 xy 平面的网格

我怎样才能得到仅适用于 xy 平面的网格\addplot3

提示:
· 画一个有环的网格很清楚。
· 如果它很重要:我需要说hide z axis

在此处输入图片描述

\documentclass[tikz, margin=5pt]{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\begin{document}
\begin{tikzpicture}[]
\begin{axis}[zmin=0, zmax=2, 
grid=both,
% hide z axis,
]
\addplot3[variable=\t, mark=*]({t},{t+2},{0}); 
\end{axis}
\end{tikzpicture}
\end{document}

相关内容