echarts圆环

bash 复制代码
option = {
  series: [
    {
      type: 'gauge',
      center: ['30%', '50%'],//圆环位置
                radius: '40%',//圆环大小
      startAngle: 250,
      endAngle: -110,
       itemStyle: {
        color: 'red'
      },
      pointer: {
        show: false
      },
      progress: {
        show: true,
        overlap: false,
        roundCap: true,
        clip: false,
        itemStyle: {
          borderWidth: 1,
          borderColor: '#4ED1Ff'
        }
      },
      axisLine: {
        lineStyle: {
          width: 40//圆环的宽度
        }
      },
      splitLine: {//表盘大刻度线
        show: false,
        distance: 0,
        length: 10
      },
      axisTick: {//表盘小刻度线
        show: false
      },
      axisLabel: {//表盘刻度线数值
        show: false,
        distance: 50
      },
     itemStyle: {
        normal: {
          opacity: 1,
          color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
            {
              offset: 0,
              color: '#4ED1Ff'
            },
            {
              offset: 1,
              color: '#287BFF'
            }
          ]),
          shadowBlur: 5,
          shadowColor: 'rgba(116, 178, 244, 0.33)'
        }
      },
      data: [
      {
        value: 84.0,
        name: '环比',
        title: {
          offsetCenter: ['0%', '-25%']
        },
        detail: {
          valueAnimation: true,
          offsetCenter: ['0%', '0%']
        }
      }
    ],
      pointer: {//指针
          show: false
        },
      title: {
        fontSize: 14,
        color: '#CACACA',
      },
      detail: {
        // width: 50,
        // height: 14,
        fontSize: 30,
        color: 'red',
        // borderColor: 'inherit',
        // borderRadius: 20,
        // borderWidth: 1,
        formatter: '{value}%',
        fontWeight: 'normal'
      }
    },
     {
      type: 'gauge',
      center: ['70%', '50%'],//圆环位置
                radius: '40%',//圆环大小
      startAngle: 250,
      endAngle: -110,
       itemStyle: {
        color: 'red'
      },
      pointer: {
        show: false
      },
      progress: {
        show: true,
        overlap: false,
        roundCap: true,
        clip: false,
        itemStyle: {
          borderWidth: 1,
          borderColor: '#2DC0C5'
        }
      },
      axisLine: {
        lineStyle: {
          width: 40//圆环的宽度
        }
      },
      splitLine: {//表盘大刻度线
        show: false,
        distance: 0,
        length: 10
      },
      axisTick: {//表盘小刻度线
        show: false
      },
      axisLabel: {//表盘刻度线数值
        show: false,
        distance: 50
      },
      itemStyle: {
        normal: {
          opacity: 1,
          color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [
            {
              offset: 0,
              color: '#2DC0C5'
            },
            {
              offset: 1,
              color: '#17BE67'
            }
          ]),
          shadowBlur: 5,
          shadowColor: 'rgba(116, 178, 244, 0.33)'
        }
      },
      data: [
      {
        value: 70.0,
        name: '同比',
        title: {
          offsetCenter: ['0%', '-25%']
        },
        detail: {
          valueAnimation: true,
          offsetCenter: ['0%', '0%']
        }
      }
    ],
      pointer: {//指针
          show: false
        },
      title: {
        fontSize: 14,
        color: '#CACACA',
      },
      detail: {
        // width: 50,
        // height: 14,
        fontSize: 30,
        color: 'red',
        // borderColor: 'inherit',
        // borderRadius: 20,
        // borderWidth: 1,
        formatter: '{value}%',
        fontWeight: 'normal'
      }
    }
  ]
};
相关推荐
Leyla4 分钟前
【代码重构】好的重构与坏的重构
前端
影子落人间7 分钟前
已解决npm ERR! request to https://registry.npm.taobao.org/@vant%2farea-data failed
前端·npm·node.js
世俗ˊ32 分钟前
CSS入门笔记
前端·css·笔记
子非鱼92132 分钟前
【前端】ES6:Set与Map
前端·javascript·es6
6230_37 分钟前
git使用“保姆级”教程1——简介及配置项设置
前端·git·学习·html·web3·学习方法·改行学it
想退休的搬砖人1 小时前
vue选项式写法项目案例(购物车)
前端·javascript·vue.js
加勒比海涛1 小时前
HTML 揭秘:HTML 编码快速入门
前端·html
啥子花道1 小时前
Vue3.4 中 v-model 双向数据绑定新玩法详解
前端·javascript·vue.js
麒麟而非淇淋1 小时前
AJAX 入门 day3
前端·javascript·ajax
茶茶只知道学习1 小时前
通过鼠标移动来调整两个盒子的宽度(响应式)
前端·javascript·css