如何使 pgfplots 中的图例框透明?

如何使 pgfplots 中的图例框透明?

图例框遮住了部分图表(尽管我删除了边框)。如何使图例框透明?

在此处输入图片描述

答案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}

在此处输入图片描述

相关内容