Wenn Du nur eine `x-Achse` bei `y=0` haben möchtest, dann kannst du folgende Option nutzen:
axis x line*=middle
Lässt man den `*` weg, dann wird die Achse mit Pfeilspitze gezeichnet.
![alt text][1]
\documentclass{article}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\usepackage{caption}
\begin{document}
\begin{center}
\begin{minipage}{\linewidth}
\centering
\begin{tikzpicture}
\begin{axis}[
axis x line*=middle,
/pgf/number format/.cd, use comma,1000 sep={},
ybar=10pt,height=8cm,width=12cm,
ymin=-70,
enlargelimits=0.15,
enlarge y limits=false,
enlarge y limits={upper,value=0.22},
legend style={
at={(current bounding box.south-|current axis.south)},
anchor=north,
legend columns=-1
},
ylabel={Test y},
xlabel={Test x},
every axis x label/.style={at={(current axis.south)},below=7mm},
symbolic x coords={1,2,3,4,5},
xtick=data, nodes near coords, nodes near coords align={vertical}
align={vertical},
xtick={1,3,4},
extra x ticks={2,5},
extra x tick style={
ticklabel style={
anchor=south,
yshift=.15cm
}
}
]
\addplot coordinates {(1,45.8) (2,-51.9) (3,51.6) (4,44.6) (5,-50.5) };
\end{axis}
\end{tikzpicture}
\captionof{figure}{TEST}%
\end{minipage}
\end{center}
\end{document}
Damit die `xticklabel` alle sichtbar sind, habe ich [diese Antwort][2] einer anderen Frage auf das Bespiel übertragen.
[1]: http://texwelt.de/wissen/upfiles/xachse.pnghttp://texwelt.de/wissen/upfiles/xachse_1.png
[2]: http://texwelt.de/wissen/fragen/4627/beschriftung-und-verlangerung-der-koordinatenachsen/4637