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'
      }
    }
  ]
};
相关推荐
一只专注api接口开发的技术猿几秒前
企业级电商数据对接:1688 商品详情 API 接口开发与优化实践
大数据·前端·爬虫
GISer_Jing2 分钟前
[前端高频]数组转树、数组扁平化、深拷贝、JSON.stringify&JSON.parse等手撕
前端·javascript·json
古拉拉明亮之神17 分钟前
Spark处理过程-转换算子
javascript·ajax·spark
Yvonne爱编码40 分钟前
CSS- 4.1 浮动(Float)
前端·css·html·github·html5·hbuilder
timeguys1 小时前
【前端】[vue3] [uni-app]使用 vantUI 框架
前端·uni-app
岁岁岁平安1 小时前
Vue3学习(组合式API——Watch侦听器、watchEffect()详解)
前端·javascript·vue.js·学习·watch侦听器·组合式api
uwvwko2 小时前
BUUCTF——web刷题第一页题解
android·前端·数据库·php·web·ctf
有事没事实验室2 小时前
CSS 浮动与定位以及定位中z-index的堆叠问题
前端·css·开源
Stringzhua2 小时前
JavaScript入门【3】面向对象
javascript
2501_915373882 小时前
Vue路由深度解析:Vue Router与导航守卫
前端·javascript·vue.js