`xmode` in styles doesn't work
Brought to you by:
cfeuersaenger,
ludewich
As it seems, xmode can't be used in styles.
% used PGFPlots v1.16
\documentclass[border=5pt]{standalone}
\usepackage{pgfplots}
\pgfplotsset{
my axis style/.style={
/pgfplots/xmode=log,
},
}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
xmode=log, % <-- works
% my axis style, % <-- doesn't work
]
\end{axis}
\end{tikzpicture}
\end{document}