Punkt in Graph beschriften mit Datum als x-Achse
Hallo,
ich Ich möchte in einem Graph ein Extremwert beschriften. In einem normalen Graph klappt das ganz gut:
\documentclass{scrartcl}
\usepackage{amsmath}
\usepackage[normalem]{ulem}
\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\begin{document}
\begin{tikzpicture}
\addplot[no markers, blue, domain=0:10000, samples=10, % you can make it larger
restrict x to domain=0:5000,% but this filter the results anyway
restrict y to domain=0:100000,
samples=300
] { 93231-3.552e-10*x^5};
\node[ coordinate, pin = {[rotate=90]right:1000} ] at (axis cs:1000,10000) { };
\end{axis}
\end{tikzpicture}
\end{document}
Nur, was mache ich, wenn die x-Achse aus Datumsangaben in der Form JJJJ-MM-TT besteht? Wenn ich z.B. 2017-01-01 eingebe (axis cs:100,2017-01-01) `(axis cs:100,2017-01-01)` erhalte ich eine Menge (mir) nichts sagender Fehlermeldungen.