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'
      }
    }
  ]
};
相关推荐
阿伟来咯~18 分钟前
记录学习react的一些内容
javascript·学习·react.js
吕彬-前端23 分钟前
使用vite+react+ts+Ant Design开发后台管理项目(五)
前端·javascript·react.js
学前端的小朱25 分钟前
Redux的简介及其在React中的应用
前端·javascript·react.js·redux·store
guai_guai_guai35 分钟前
uniapp
前端·javascript·vue.js·uni-app
也无晴也无风雨36 分钟前
在JS中, 0 == [0] 吗
开发语言·javascript
bysking2 小时前
【前端-组件】定义行分组的表格表单实现-bysking
前端·react.js
王哲晓2 小时前
第三十章 章节练习商品列表组件封装
前端·javascript·vue.js
fg_4112 小时前
无网络安装ionic和运行
前端·npm
理想不理想v2 小时前
‌Vue 3相比Vue 2的主要改进‌?
前端·javascript·vue.js·面试
酷酷的阿云2 小时前
不用ECharts!从0到1徒手撸一个Vue3柱状图
前端·javascript·vue.js