I want to plot a dataset in a 3D pgfplots graph. It looks like a good start but somehow the label placement is far out. Boiling it down to a MWE did not give me any hints how to get the labels back in place. Is there any option I overlooked? My pgf and pgfplots version's are fairly recent, so it should not be this issue: 3d axis label ovelapping.
Here is my almost minimal example:
\documentclass[tikz]{standalone}
\usepackage{tikz,pgfplots,pgfplotstable}
\pgfplotsset{compat=1.7}
\begin{document}
\pgfplotstableread{
as_concentration T
0.00 0.0
0.00 0.152
0.13 0.00
}\ascycledata
\pgfplotstableread{
as_concentration T
0.00 0.152
0.13 0.00
}\asdata
\begin{tikzpicture}
\begin{axis}[
view={45}{45},
width=10cm,
height=10cm,
ymin=-0.1, ymax=0.25, xmax=0.19, xmin=0, zmax=0.3,
xlabel=$x$,
ylabel=$y$,
axis lines=center,
]
\addplot3 [forget plot,no marks,fill=blue, opacity=0.5]
table[x=as_concentration,y expr=0,z=T] {\ascycledata};
\addplot3+ [] table[x=as_concentration,y expr=0,z=T] {\asdata};
\end{axis}
\end{tikzpicture}
\end{document}
And the output with the axis labels far away:

axis lines=centeroption. – percusse Feb 27 '13 at 23:25