I need a grid in the background and more values on the y-axis.
Can you help me out?
\begin{tikzpicture}
\begin{axis}[width=14cm,height=6cm,title={Entwicklung},ylabel={Wachstum in Prozent},
symbolic x coords={a,b,c,d,e},
xtick=data]
\addplot[ybar,fill=blue] coordinates {
(a,61.5)
(b,-9.8)
(c,-27.6)
(d,-14.7)
(e,3.2)
};
\end{axis}
\end{tikzpicture}