I'm trying to change the default color of the bar plot with a a colormap without success.
The thing is that I don't like the default color sequence. However, I was wondering if there is a way of automatically switching between colors. I try using the cycle list name but it only changes the line and doesn't fill the bars. Is there any hope or do I have to set the colors by hand every time in the \addplot command?
This is an example of what I have
\documentclass{article}
\usepackage{tikz}
\usepackage{pgfplots}
\pgfplotsset{width=\linewidth,compat=1.3}
\begin{document}
\pagestyle{empty}
\begin{tikzpicture}
\begin{axis}[
x tick label style={
/pgf/number format/1000 sep=},
ylabel=Population,
enlargelimits=0.05,
legend style={at={(0.5,-0.15)},
anchor=north,legend columns=-1},
ybar interval=0.7,
cycle list name=color list`enter code here`
]
\addplot
coordinates {(1930,50e6) (1940,33e6)
(1950,40e6) (1960,50e6) (1970,70e6)};
\addplot
coordinates {(1930,38e6) (1940,42e6)
(1950,43e6) (1960,45e6) (1970,65e6)};
\addplot
coordinates {(1930,15e6) (1940,12e6)
(1950,13e6) (1960,25e6) (1970,35e6)};
\addplot
coordinates {(1930,15e6) (1940,12e6)
(1950,13e6) (1960,25e6) (1970,35e6)};
\legend{Far,Near,Here,There}
\end{axis}
\end{tikzpicture}
\end{document}

