Why is the following MWE not placing the label along the correct angle?
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{calc}
\begin{document}
\begin{tikzpicture}[every path/.style={line width=1pt}]
\coordinate (X) at (2,4) {};
\foreach \x in { 100,107,114}
{
\node (tmp\x) at ($(X)+(\x:3)$) {};
\draw[orange!30,fill=orange!30] (X) -- (tmp\x);
}
\node[circle,inner sep=2pt,draw,label=107:X] at (X) {};
\node[inner sep=0pt,fill=none] (label/A) at ($(X)+(107:1.0)$) {Y};
\end{tikzpicture}
\end{document}

The Y has been placed where I expect and want the X to be.
