渐变饼图

描述:当前是关于Echarts图表中的 饼图 示例。
 
            
let echartData = [
   {
      value: 2154,
      name: "电网电",
      percent: '18%',
      itemStyle: {
         normal: {
         //颜色渐变
         color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
            { offset: 0, color: "#0175c4" },
            { offset: 1, color: "#03163a" },
         ]),
         },
      },
   },
   {
      value: 2258,
      name: "风电",
      percent: '25%',
      itemStyle: {
         normal: {
         //颜色渐变
         color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
            { offset: 0, color: "#01a0c7" },
            { offset: 1, color: "#032748" },
         ]),
         },
      },
   },

   {
      value: 3515,
      name: "光电",
      percent: '16%',
      itemStyle: {
         normal: {
         //颜色渐变
         color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
            { offset: 0, color: "#b99c0b" },
            { offset: 1, color: "#1a232b" },
         ]),
         },
      },
   },
   {
      value: 3515,
      name: "空气能",
      percent: '38%',
      itemStyle: {
         normal: {
         //颜色渐变
         color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
            { offset: 0, color: "#c16b27" },
            { offset: 1, color: "transparent" },
         ]),
         },
      },
   },
   {
      value: 3854,
      name: "地热能",
      percent: '12%',
      itemStyle: {
         normal: {
         //颜色渐变
         color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
            { offset: 0, color: "#FF3939" },
            { offset: 1, color: "transparent" },
         ]),
         },
      },
   },
   ];

   let colorArr = ['#0175c4', '#01a0c7', '#b99c0b', '#c16b27', '#FF3939']
   // 图例的样式
   
   let legendRich = {
         name: {
            fontSize: 12,
            color: "#fff",
         },
         value: {
            fontSize: 12,
            color: "#fff",
         },
         /* percent: {
            fontSize: 12,
            color: "red",
            padding:[0,0,0,20]
         } */
   };

   for (let index = 0; index < colorArr.length; index++) {
      const color = colorArr[index];

      legendRich['percent' + index] = {
         fontSize: 12,
         color: color,
      }
   }




option = {
   backgroundColor: '#03102d',
   //你的代码
   legend: {
          // orient 设置布局方式,默认水平布局,可选值:'horizontal'(水平) | 'vertical'(垂直)
          orient: "vertical",
          // x 设置水平安放位置,默认全图居中,可选值:'center' | 'left' | 'right' | {number}(x坐标,单位px)
          x: "60%",
          // y 设置垂直安放位置,默认全图顶端,可选值:'top' | 'bottom' | 'center' | {number}(y坐标,单位px)
          y: "center",
          itemWidth: 24, // 设置图例图形的宽
          // itemHeight: 18, // 设置图例图形的高
          textStyle: {
            // color: "#fff", // 图例文字颜色
            rich: legendRich
          },
          // itemGap设置各个item之间的间隔,单位px,默认为10,横向布局时为水平间隔,纵向布局时为纵向间隔
          itemGap: 18,
          // data: [
          //   "电网电",
          //   "风电",
          //   "光电",
          //   "空气能",
          //   "地热能"
          // ],
          /* formatter: function () {
            for (var i = 0; i < echartData.length; i++) {
              let item = echartData[i]
              return item.name + '\r\r' + item.value + '\r' + 'kWh' + '\r\r\r' + `(${item.percent})`
            }
          }, */
          formatter: function (name) {
            let str = ''
            echartData.map((item, index) => {
              if (item.name === name) {
                str = `{name|${name}}\r{value|${(item.value)}kWh}\r\r{${'percent' + index}|${item.percent}}`
              }
            })
            return str
          },
        },
        tooltip: {
          show: true,
          formatter: function (value) {
            let data = value.data
            return `${data.name} ${data.value} (${data.percent})`
          }
        },
        series: [
          {
            name: "告警类型",
            type: "pie",
            labelLine: {
              show: false
            },
            label: {
              show: false
            },
      
            radius: ["30%", "50%"],
            center: ['30%', '50%'],
            hoverAnimation: false,
            color: [
              "#c487ee",
              "#deb140",
              "#49dff0",
              "#034079",
              "#6f81da",
              "#00ffb4",
            ],
            data: echartData,
          },
        ],
};