I'm creating a several graphs with pgfplots. The problem I'm coming across is that some graphs do not have a value for the last coordinate as per the example below (and I want to keep the ticks on the x axis consistent).
\documentclass{standalone}
\usepackage{tikz}
\usepackage{pgfplots}
\begin{document}
\begin{tikzpicture}
\begin{axis}[xtick={1,2,5,10,20,50,100},xticklabels={1,2,5,10,20,50,100},unbounded coords=jump,xminorticks=false,yminorticks=false]
\addplot[smooth] coordinates {
(1.0000000000, 1.3562500000)
(2.0000000000, 1.2825000000)
(5.0000000000, NaN)
(10.0000000000, 4.2087500000)
(20.0000000000, 10.7962500000)
(50.0000000000, 91.7450000000)
(100.0000000000, NaN)
};
\end{axis}
\end{tikzpicture}
\end{document}
which produces:

Is there a way to force the x axis to include the tick and label for 100? The 'unbounded coords=jump' option does not help since there are no more lines to draw.
Thanks

xmax=102to theaxisoptions. – Gonzalo Medina Aug 28 '12 at 17:20enlarge limitsoptions in the manual. – percusse Aug 28 '12 at 17:50xmin=0explicitly). – Jake Aug 28 '12 at 18:27