I managed to get the x tick labels on the top axis of a plot, but the label of the x axis is still on the bottom axis. I couldn't find an option to get it to the top axis. Is this possible?
Minimal example
\documentclass{article}
\usepackage{tikz}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[xticklabel pos=right, xlabel={My x label}]
\addplot coordinates { (1,1) (42,23) };
\end{axis}
\end{tikzpicture}
\end{document}

xticklabel pos=upper? Interesting... – percusse Nov 30 '11 at 15:26pos=right. I tried it again just now and it worked. Must have been a typo back then. – Flogo Nov 30 '11 at 15:45