美文网首页
echarts中饼图颜色设置

echarts中饼图颜色设置

作者: xsmile21 | 来源:发表于2022-03-22 10:00 被阅读0次

第一种方式:

color: ['#1F90FF', '#1177DC', '#0E5DA6', '#00E5AB', '#0E5DA6', '#1177DC']

第二种方式:

itemStyle: {
   normal: {
      color: function(params) {
         var colorList = [
            '#1F90FF', '#1177DC', '#0E5DA6', '#00E5AB', '#0E5DA6', '#1177DC'
         ];
         return colorList[params.dataIndex]
      }
   }
}

相关文章

网友评论

      本文标题:echarts中饼图颜色设置

      本文链接:https://www.haomeiwen.com/subject/zxffjrtx.html