变压器状态评价结果展示

描述:当前是关于Echarts图表中的 仪表盘 示例。
 
            option = {
    title: {
        text: '变压器状态',
        subtext: '',
        left: 'center',
        padding: [140, 0],
        textStyle: {
            fontSize: 23,
            color: '#fff',

        }
    },
    backgroundColor: '#404a59',
    tooltip: {
        formatter: '<div style="text-align: center;">业务指标</div>{b} : {c}'
    },
    toolbox: {
        feature: {
            restore: {},
            saveAsImage: {}
        }
    },
    series: [{
        axisLine: {
            show: true,
            lineStyle: {
                color: [
                    [0.166, '#91c7ae'],
                    [0.5, '#63869e'],
                    [0.9, '#EFC631'],
                    [1, '#c23531']
                ],
                width: 30
            }
        },
        axisTick: {
            show: true
        },
        axisLabel: {
            distance: 6,
            textStyle: {
                color: 'auto'
            }
        },
        itemStyle: {
            normal: {
                color: 'auto'
            }
        },
        radius: '45%',
        pointer: {
            width: 10
        },
        title: {
            offsetCenter: [0, '90%']
        },
        detail: {
            textStyle: {
                fontWeight: 'normal',

                color: 'white'
            },
            offsetCenter: [0, '58%'],
            formatter: '注意'
        },
        min: 0,
        max: 100,
        name: '米类仪表盘',
        type: 'gauge',
        show: false,
        splitNumber: 4,

        data: [{
            value: '33',
        }]
    }]
};