I have an xbar graph with some some data that I don't necessarily know the length of beforehand. Is there some way I can tell pgfplots to automatically expand the height of the chart according to the amount of data?
For example, in this example, there are so many data points that the bars overlap because the height is constant.
\documentclass[letterpaper]{article}
\usepackage{tikz}
\usepackage{pgfplots}
\begin{filecontents}{my.dat}
Label value num
992 70 1
993 120 2
994 30 3
995 330 4
999 50 5
988 50 6
989 50 7
983 50 8
973 50 9
963 50 10
953 50 11
941 60 12
942 70 13
943 20 14
944 30 15
945 10 16
\end{filecontents}
\begin{document}
\begin{tikzpicture}
\begin{axis}[
xbar,
xlabel=My value,
ylabel=Label here,
xmajorgrids=true,
ytick=data,
yticklabels from table={my.dat}{Label},
nodes near coords,
]
\addplot table [x=value, y=num]
{my.dat};
\end{axis}
\end{tikzpicture}
\end{document}

