I'm seeing x tick marks drawn outside the plot area when ybar is active. Is this expected, why, and how can it be prevented?
Here's a MWE:
\documentclass{article}
\usepackage{pgfplots}
\pgfplotsset{compat=1.10}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
title=Test,
xlabel={X label},
ylabel={Y label},
ybar
]
\end{axis}
\end{tikzpicture}
\begin{tikzpicture}
\begin{axis}[
title=Test,
xlabel={X label},
ylabel={Y label},
%ybar
]
\end{axis}
\end{tikzpicture}
\end{document}
