I annotate special points in my diagram and use a node/pin approach:
\documentclass[border=3mm,tikz]{standalone}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
axis lines = middle,
xlabel = {$x$},
ylabel = {$y$},
]
\addplot [domain=0:10]{x};
\node[coordinate, pin={[align=left,pin distance = 10mm]-30:{Test Text Test\\ Text Test}}]
at (axis cs:4,4) {};
\end{axis}
\end{tikzpicture}
\end{document}
I want to change the anchor for the pin line / pin egde -- here are two possibilities:
Is that possible?

