图例框遮住了部分图表(尽管我删除了边框)。如何使图例框透明?
答案1
您可以按照这种方法添加fill=none
到密钥中。legend style
\documentclass[11pt]{article}
\usepackage[T1]{fontenc}
\usepackage{pgfplots}
\pgfplotsset{compat=1.9}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
legend style={fill=none}
]
\addplot {x};
\addlegendentry{$x$};
\end{axis}
\end{tikzpicture}
\end{document}