Using pins is a nice way to annote your plots in PGF Plots. However, I would like to have the weight for the line leading from a point on the graph to the text to be bold. How do I do this?
Consider the following MWE:
\documentclass{minimal}
\usepackage{pgfplots}
\pgfplotsset{compat=1.5.1}
\begin{document}
\begin{tikzpicture}
\begin{axis}
\addplot[domain=1:6]
{exp(x)};
54.59815
\node[coordinate,pin=left:{A pin!}]
at (axis cs:4,54.59815) {};
\end{axis}
\end{tikzpicture}
\end{document}
