I want to use colorbrewer in my project since it provides color cycle lists but I struggle to use them in the right way I think. Please have a look at my MWE:
\documentclass{article}
\usepackage{pgfplots}
\usepgfplotslibrary{colorbrewer}
\pgfplotsset{cycle list/Dark2-8}
\begin{document}
\begin{figure}[h!]
\pgfplotstableread[row sep=\\,col sep=&]{
abc & 1 \\
def & 5 \\
}\datapoints
\begin{tikzpicture}
\begin{axis}[
% general appearance
ybar,
cycle multi list=Dark2-8,
% x axis
symbolic x coords={def},
xtick=data,
xticklabel style={align=center},
% y axis
bar width=0.2cm,
% legend
area legend,
legend entries={1},
legend pos=north west
]
\addplot table[y=1, x=abc]{\datapoints};
\end{axis}
\end{tikzpicture}
\end{figure}
\end{document}
My Problem is, that the bar is not filled and I don't really know how to achieve this without adding a manual fill for each addplot.
By the way, if I try to add fill=Dark2-8-1 to the addplot options I get the error ! Package xcolor Error: Undefined color Dark2-8-1.
Can anybody point out where I went wrong?


Dark2-Dname scheme? I only foundDark2-8-1. – Rambo Ramon Jul 04 '16 at 22:26Dark2-Dis not a scheme name by itself, but a particular color within theDark2-<set>scheme initialized. – osjerick Jul 04 '16 at 22:37