其他分享
首页 > 其他分享> > echarts仪表图

echarts仪表图

作者:互联网

option = {
  series: [
    {
      type: 'gauge',
      progress: {
        show: true,
        width: 18
      },
      axisLine: {
        lineStyle: {
          width: 18
        }
      },
      axisTick: {
        show: false
      },
      splitLine: {
        length: 15,
        lineStyle: {
          width: 2,
          color: '#999'
        }
      },
      axisLabel: {
        distance: 25,
        color: '#999',
        fontSize: 20
      },
      anchor: {
        show: true,
        showAbove: true,
        size: 25,
        itemStyle: {
          borderWidth: 10
        }
      },
      title: {
        show: false
      },
      detail: {
        valueAnimation: true,
        fontSize: 80,
        offsetCenter: [0, '70%']
      },
      data: [
        {
          value: 70
        }
      ]
    }
  ]
};

  

option = {  series: [    {      type: 'gauge',      progress: {        show: true,        width: 18      },      axisLine: {        lineStyle: {          width: 18        }      },      axisTick: {        show: false      },      splitLine: {        length: 15,        lineStyle: {          width: 2,          color: '#999'        }      },      axisLabel: {        distance: 25,        color: '#999',        fontSize: 20      },      anchor: {        show: true,        showAbove: true,        size: 25,        itemStyle: {          borderWidth: 10        }      },      title: {        show: false      },      detail: {        valueAnimation: true,        fontSize: 80,        offsetCenter: [0, '70%']      },      data: [        {          value: 70        }      ]    }  ]};

标签:25,false,show,color,width,仪表,true,echarts
来源: https://www.cnblogs.com/myfirstboke/p/16451703.html