Echarts柱子的随机颜色
程序员文章站
2022-07-13 14:32:43
...
Echarts接触一点点点
柱子设置颜色
series: [{
itemStyle: {
normal: {
// 定制显示(按顺序)
color: function(params) {
var colorList = ['#C33531','#EFE42A','#64BD3D','#EE9201'];
return colorList[params.dataIndex]
}
},
},
}]
随机颜色
五彩斑斓怪好看
series: [{
itemStyle: {
normal: {
color: function(d){
return "#"+Math.floor(Math.random()*(256*256*256-1)).toString(16);
}
}
},
},
}]
哦,我是看的Ta的博客
https://blog.csdn.net/weixin_43290804
上一篇: 自定义li前面的圆点颜色