我想删除此图的顶部和右侧轴:
这是我的代码:
\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}
谢谢!