This should be a simple question about positioning text with nodes using pgfplots.
To make a skew node line with text I'd use
\documentclass{article}
\usepackage{pgfplots}
\pgfplotsset{compat = newest}
\begin{document}
\begin{figure}
\begin{tikzpicture}
\begin{axis}[
title = DPPH,
xlabel = Applied Magnetic Field (I Guess) / G,
xmax = 8,
xmin = -8,
ymax = 300,
ymin = -300,
ytick = \empty,
xtick pos = left]
\addplot[black, % Plotting the data
no marks]
table[x=xaxis,y=yaxis] {dpph2.dat};
\node[coordinate,
pin = {45:g factor = 1.96}
] at (0.2,224) {};
\end{axis}
\end{tikzpicture}
\end{figure}
\end{document}
for example.
To make a skew node with rotated text, where I can position the text about the node line using above, below, left, right or a combination of those, I'd change the \node part above to
\node[coordinate,
pin = {[rotate=45]right:g factor = 1.96}
] at (-0.3,250) {};
My question: how do I use above, below, right, etc in the first code (without rotating the text as well as the node line)? I tried things like 45right, 45, right, [45]right, but none of my guesses worked and I can't seem to find an example online.
EDIT
Here's what the first bit of code I put above gives me

and here's what I'd like to be able to do (just move where the text is with respect to the node line)
Thanks.

\documentclass{...}and ending with\end{document}so that users can reproduce your problem and try to help you. – Pier Paolo Feb 20 '15 at 13:0945 leftsupposed to mean? Can you give an example/hand drawn sketch of what that should do? – darthbith Feb 20 '15 at 13:09pindraws a line from center ofpinnode tomainnode. What you can select is where position thepinnode but not it's anchor. But you can use alabelnode and draw a connection line later. – Ignasi Feb 20 '15 at 13:44