In order to show the difference between three measurements against a single one, I need to combine a regular bar plot and with a stacked one. However, once I use a stacked bar plot, the single datum is shifted:

This is what produced the plot:
\begin{tikzpicture}
\begin{axis}[
xbar stacked,
xmin=0,
]
\addplot coordinates {
({0.394240+1.067584}, 0)
({0.614592+1.247520}, 1)
({1.862848+1.615360}, 2)
({4.025184+2.461248}, 3)
};
\addplot coordinates {
({0.333824+0.553664}, 0)
({0.602816+1.236160}, 1)
({1.719200+0.600512}, 2)
({3.526432+1.282208}, 3)
};
\addplot coordinates {
({0.334912+0.522688}, 0)
({0.642980+0.701760}, 1)
({1.873760+0.997440}, 2)
({3.856416+1.302432}, 3)
};
\addplot coordinates {
(0.630336, 0.5)
(1.925728, 1.5)
(6.348640, 2.5)
(15.193056, 3.5)
};
\end{axis}
\end{tikzpicture}
Is it possible to shift the orange bar back to 0?
