How do I replace the blue backgrounds as indicated in the picture with a diagonal and grid pattern respectively?
I currently can't find a neat solution for my kind of graph.
Code
\begin{tikzpicture}
\begin{axis}[
ybar,
bar width=1.0cm,
enlargelimits=0.75,
width=7.5cm,
height=6cm,
xlabel={Predictive models}, ylabel style={align=center},
ylabel={Predicitve accuracy (\%)},
symbolic x coords={ensemble voting, lung cancer calculator},
xtick=data,
xticklabel style={text width=2cm, align=center}
]
\addplot coordinates {
(lung cancer calculator,91.2)
(ensemble voting,91.4)
};
\end{axis}
\end{tikzpicture}
Output

\addplotcommands one for each coordinate with different pattern. – percusse Oct 02 '13 at 07:44