使用 colorbrewer 填充 pgfplot 条形图

使用 colorbrewer 填充 pgfplot 条形图

我想在我的项目中使用 colorbrewer,因为它提供了颜色循环列表,但我很难以正确的方式使用它们。请看一下我的 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}

在此处输入图片描述

fill我的问题是,该栏没有填满,而且如果不为每个栏添加手册,我真的不知道如何实现这一点addplot

顺便说一句,如果我尝试添加fill=Dark2-8-1到 addplot 选项,我会收到错误! Package xcolor Error: Undefined color Dark2-8-1.

有人能指出我哪里错了吗?

答案1

您可以通过添加every axis plot/.append style={fill}来解决填充问题。此外,Dark2-<color letter>如果初始化的循环列表是列表中的Dark2-8颜色,则可以使用从循环列表中调用特定颜色Dark2-D

代码

\documentclass{article}
\usepackage{pgfplots}
\usepgfplotslibrary{colorbrewer}
\pgfplotsset{cycle list/Dark2-8}

\begin{document}
    \pgfplotstableread{
        x   y
        a   5
        b   6
        c   4
    }\mytable

    \begin{tikzpicture}
        \begin{axis}[
            ybar,
            symbolic x coords={a,b,c},
            xtick=data,
            every axis plot/.append style={fill},
            cycle list name=Dark2-8
        ]
            \addplot table [y=y, x=x]{\mytable};
            \addplot table [y=y, x=x]{\mytable};
            \addplot[fill=Dark2-D,draw=Dark2-D] coordinates {(a,7) (b,1) (c,2)};
        \end{axis}
    \end{tikzpicture}
\end{document}

PGFPlots 手册推荐的另一种方法是从初始化的颜色方案中获取特定颜色,使用index of colormap以下命令:

\addplot[index of colormap=3 of Dark2-8] coordinates {(a,7) (b,1) (c,2)};

结果

在此处输入图片描述

相关内容