I want to use pins to comment specific points in a diagramm. When I use a edge like -> it works fine. But if I use *- for example then the center of the dot is not at the position it should be. Maybe it's a problem with the anchor. Here is an example:
\documentclass[]{article}
\usepackage{tikz}
\usepackage{pgfplots}
\usepgflibrary{arrows}
\begin{document}
\begin{tikzpicture}
\begin{axis}%
[
axis y line = left,
axis x line = middle,
grid
]
\addplot[mark=none,domain=0:5] {x};
\node%
[
coordinate,
pin={[pin edge={*-}]50:{text}}
]
at (axis cs:2,1) {};
%
\node%
[
coordinate,
pin={[pin edge={red}]-50:{text}}
]
at (axis cs:2,1) {};
\end{axis}
\end{tikzpicture}
\end{document}
Leading to

The close up shows the problem:

Any ideas?
