是否可以在 pgfplots 中仅显示底部和左侧轴?

是否可以在 pgfplots 中仅显示底部和左侧轴?

我想删除此图的顶部和右侧轴:

在此处输入图片描述

这是我的代码:

\begin{tikzpicture}
\begin{axis}[%
xlabel={Time},
ylabel={Stock Price},
xticklabels={,,}
]
\addplot[line width=1pt,solid,color=blue] %
table[col sep=comma]{stock1.csv};
\addplot[line width=1pt,solid,color=orange] %
table[col sep=comma]{stock2.csv};
\addplot[line width=1pt,solid,color=red] %
table[col sep=comma]{stock3.csv};
\end{axis}\end{tikzpicture}

谢谢!

相关内容