第一种:随机颜色
color: function() {
return 'rgb(' + [
Math.round(Math.random() * 160),
Math.round(Math.random() * 160),
Math.round(Math.random() * 160)
].join(',') + ')';
},
第二种:在颜色范围内随机
itemStyle: {
normal: {
color: function(params) {
var colorarrays = ['#0769CB', '#00ABBD', '#ffd886', "#9F2E61", "#4D670C"];
return colorarrays[params.dataIndex];
}
}
}
echarts饼状图随机颜色
最新推荐文章于 2023-12-25 19:04:45 发布