echarts gauge配置项内容和展示

仪表盘

配置项如下
      
        option = {
            backgroundColor: '#1f1e26',
            
            
            series: [
                {
            name: "大环",
            type: 'gauge',
            splitNumber: 100,
            radius: '60%',
            center: ['50%', '50%'],
            startAngle: 90,
            endAngle: -269.9999,
            axisLine: {
                show: false,
                lineStyle: {
                    color: [[0.3, '#6dfbff'],[1, '#293041']]
                }
            },
            axisTick: {
                show: false
            },
            splitLine: {
                show: true,
                length: 22,
                lineStyle: {
                    color: 'auto',
                    width: 2.5
                }
            },
            axisLabel: {
                show: false
            },
            detail: {
                show: false
            }
        },

            ]
        };
    
截图如下