How can I increase the spacing between the bars in a bar plot from pgfplots?
\documentclass{minimal}
\usepackage{pgfplots}
\pgfplotsset{compat=newest}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
every axis plot post/.style={/pgf/number format/fixed},
ybar,
x=3cm,
ymin=-0.1,
ymax=12,
xtick=data,
enlarge x limits=0.2,
bar width=15pt,
symbolic x coords={A,B,C},
nodes near coords,
axis lines*=left,
]
\addplot coordinates {(A,2) (B,0.5) (C,10)};
\addplot coordinates {(A,20) (B,30) (C,1)};
\addplot coordinates {(A,6) (B,11) (C,7)};
\end{axis}
\end{tikzpicture}
\end{document}
I want to increase the space between the bars (A,2), (A,20), (A,6) (and analogously with B's and C's).
And on another note: How can I deal with values that are too large to be displayed? (e.g (B,30))

ymaxto a higher value, but I want convey that these bars are too high. – MartinG Jan 01 '13 at 23:35\addplotstatements, plotting just{(A,20) (B,30) (C,1)}then this breaks. Any suggestions on how to fix that? – Nicolas Wu Apr 04 '13 at 13:39ymaxto a value smaller than therestrict y to domain. – tim Jun 09 '21 at 18:43