I updated Miktex and also pgfplots to the latest version today. But now i have a Problem with pgfplots. It seems it doesn't like the rotation of the y axis label.
I tried the 32 bit Version and also the 64bit Version of Miktex as well as different Latex Editors. So this is the example of the Manual:
\documentclass{article}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
title=With \texttt{near ticklabel},
ylabel={$f(x)=x$},
every axis y label/.style={
at={(ticklabel cs:0.5)},anchor=near ticklabel,
},
clip=false,
ylabel style={draw=red},
yticklabel style={draw=red},
]
\addplot {x};
\fill (yticklabel cs:0.5) circle(2pt);
\end{axis}
\end{tikzpicture}
\end{document}
When i rotate the y label via
every axis y label/.style={
at={(ticklabel cs:0.5)},anchor=near ticklabel,rotate=90,
},
it is set to some weird Position, as shown in the Image. Are there any suggestions where to begin to search?
[
]
I'm using Latex-PS-PDF for compiling, and normaly the Texnic-Center with UTF-8 encoding
pdflatexandxelatextgives correct result. – Zarko Jul 27 '19 at 00:47