欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Echarts设置不同柱子颜色

程序员文章站 2022-07-13 14:25:07
...
{
    series: [
        {
            itemStyle: {
                normal: {
                //每根柱子颜色设置
                    color: function(params) {
                        let colorList = [
                                            "#c23531",
                                            "#2f4554",
                                            "#61a0a8",
                                            "#546570"
                                        ];
                        return colorList[params.dataIndex];
                    }
                }
            },
        }
    ]
}

 

相关标签: 数据可视化