仪表盘echarts gauge配置项内容和展示

配置项如下
      const dataInfo = {
    status: '正常',
    value: 35.8
}
const color = '#3592FE'
option = {
    backgroundColor: 'transparent',
    series: [{
            name: '刻度',
            type: 'gauge',
            startAngle: 220,
            endAngle: -40,
            min: -20,
            max: 60,
            radius: '67%',
            axisLine: {
                show: false
            },
            title: {
                show: false
            },
            detail: {
                show: true,
                offsetCenter: [0, '70%'],
                formatter: function() {
                    return '{status|' + dataInfo.status + '}\n{value|' + dataInfo.value + '℃}';
                },
                rich: {
                    status: {
                        fontSize: 14,
                        lineHeight: 22,
                        color: '#333333'
                    },
                    value: {
                        fontSize: 23,
                        lineHeight: 32,
                        color: color
                    }
                }
            },
            axisTick: {
                show: false,
                length: 0,
                lineStyle: {
                    color: '#999'
                }
            },
            splitLine: {
                length: 6,
                width: 2,
                lineStyle: {
                    color: color
                }
            },
            axisLabel: {
                color: '#8098BC'
            },
            pointer: {
                length: '50%',
                width: 6
            },
            itemStyle: {
                color: color,
                shadowColor: 'rgba(0,138,255,0.45)',
                shadowBlur: 10,
                shadowOffsetX: 2,
                shadowOffsetY: 2
            },
            markPoint: {
                data: [{
                    x: "50%",
                    y: "50%",
                    symbol: 'circle',
                    symbolSize: 24,
                    itemStyle: {
                        color: color
                    },
                }, {
                    x: "50%",
                    y: "50%",
                    symbol: 'circle',
                    symbolSize: 18,
                    itemStyle: {
                        color: "#fff"
                    },
                }]
            },
            data: [dataInfo]

        },
        {
            name: '外圈',
            type: 'gauge',
            radius: '70%',
            startAngle: 225,
            endAngle: -45,
            min: -20,
            max: 60,
            title: {
                show: false
            },
            detail: {
                show: false
            },
            axisLine: {
                show: true,
                lineStyle: {
                    width: 16,
                    color: [
                        [
                            (dataInfo.value + 20) / 80, color
                        ],
                        [
                            1, 'rgba(53, 146, 254, 0.1)'
                        ]
                    ],
                    // shadowColor: 'rgba(0,138,255,0.35)',
                    // shadowBlur: 5,
                }
            },
            axisTick: {
                show: false,
            },
            splitLine: {
                show: false,
            },
            axisLabel: {
                show: false
            },
            pointer: {
                show: false,
            },
            itemStyle: {
                normal: {
                    color: '#54F200',
                }
            },
            data: [dataInfo]
        }
    ]

}
    
截图如下