我无法更改 google 图表的注释颜色

I can't change the annotation color of my google chart

我尝试了几个小时来更改柱形图旁边的矩形的颜色(我是 google 图表的新手),但我找不到解决方案,你能帮帮我吗请问?

这是我的代码:

 var data3 = google.visualization.arrayToDataTable([
                
                ['Element', 'Nombre de projets en cours',{ role: 'style' }, { role: 'annotation' }, ],
                ['Abel', abelProjet, '#05204A', '' ],
                ['Evan', evanProjet, '#05204A', '' ],
                ['Florent', florentProjet, '#05204A', '' ],
                ['Florian', florianProjet, '#05204A', '' ],
                ['Martin', martinProjet, '#05204A', '' ],
                ['Novan', novanProjet, '#05204A', '' ],
                ['Valentin', valentinProjet, '#05204A', '' ]
            ]);

            var options3 = {};

它是这样的: Screenshot

矩形应该与列的颜色相同吗?

使用 colors 图表选项...

这就是传奇的驱动力。

var options3 = {
  colors: ['#05204A']
};

此选项将使条形颜色相同,并且可以删除样式角色。
仅当您需要覆盖系列中特定栏的颜色时才需要样式角色。