I am studying this article: "Tufte-style Bar Charts with pgfplots". I was able to come up to step #4, and was stuck, removing the border from the bars:
\definecolor{tufte1}{rgb}{0.7,0.7,0.55}
\begin{tikzpicture}
...
cycle list={
fill=tufte1, draw=none\\
}
...
I wrote this code:
\documentclass{article}
\usepackage[a4paper]{geometry}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{pgfplots}
\begin{document}
%I added this
\definecolor{tufte1}{rgb}{0.7,0.7,0.55}
\begin{tikzpicture}
\begin{axis}[
ybar,
hide x axis,
axis line style={opacity=0},
major tick style={draw=none},
ymin=0,
bar width=0.9em,
ymajorgrids,
major grid style=white,
axis on top
]
%and this
cycle list={
fill=tufte1, draw=none\\
}
\addplot table {data.csv};
\end{axis}
\end{tikzpicture}
\end{document}
data.csv:
1 8.5
2 12
3 6.5
4 7
5 3
6 17.5
7 13
8 8.5
9 6
10 11
11 5
12 10
But it doesn't work: the color is not changed, and the border stays intact:

How to remove the borders and change the color?

(I didn't narrow the bars - I don't like it).
