pgfplots: Boolescher Schlüssel für einen Stil funktioniert nicht

pgfplots: Boolescher Schlüssel für einen Stil funktioniert nicht

Ich habe versucht, einen Bool einzufügen Title=true|false:

\pgfplotsset{
%/pgfplots/.cd, % no effect
Title/.is choice, 
Title/.style={title={A title.}}, 
}    

Warum funktionieren Titleund nicht und ich bekomme Title=truebeide Title=falseMale einen Titel?
Was muss ich besser machen?

Bildbeschreibung hier eingeben

\documentclass[border=3.14pt]{standalone}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\begin{document}

\pgfplotsset{
%/pgfplots/.cd, % no effect
Title/.is choice, 
Title/.style={title={A title.}}, 
}    

\begin{tikzpicture}
\begin{axis}[Title=true]
\addplot[] {x} node[pos=0.5]{Has a title. :)};;
\end{axis}
\end{tikzpicture}

\begin{tikzpicture}
\begin{axis}[Title=false]
\addplot[red] {x} node[pos=0.5]{Has a title too. :(};
\end{axis}
\end{tikzpicture}

Antwort1

Du kannst den Handler so verwenden .is choice, dass du für jede Auswahl einen Schlüssel definierst, der dann jeweils die verschiedenen Auswahlmöglichkeiten truebzw. falsederen Unterschlüssel angibt.

\pgfplotsset{
  Title/.is choice, 
  Title/true/.style={title={A title.}},
  Title/false/.style={}, 
} 

Wenn Sie den Schlüssel auf einen booleschen Wert beschränken möchten, etoolboxkönnen Sie mit dem Paket den Handler verwenden .is if.

\pgfplotsset{Title/.is if,
  Title/.code={\ifbool{#1}{\pgfplotsset{title={A title}}}{}}
}

Bildbeschreibung hier eingeben

verwandte Informationen