水球图

描述:当前是关于Echarts图表中的 水球图 示例。
 
            option = {
    title: {
        text: '在产企业占比',
        left: 'center',
        top: 10,
        textStyle: {
            color: '#333',
            fontWeight: 'normal',
            fontSize: 14
        }
    },
    series: [{
        name: '水球图',
        type: 'liquidFill',
        radius: '80%',
        center: ['50%', '55%'],
        waveAnimation: 10, // 动画时长
        amplitude: 20, // 振幅
        data: [0.6],
        color: 'rgba(68, 197, 253,1)',
        label: {
            normal: {
                color: '#44C5FD',
                textStyle: {
                    fontSize: 16,
                    fontWeight: 'normal'
                }
            }
        },
        outline: {
            show: true,
            borderDistance: 5,
            itemStyle: {
                borderColor: 'rgba(68, 197, 253,1)',
                borderWidth: 2
            }
        },
        backgroundStyle: {
            color: 'rgba(68, 197, 253,.3)'
        }
    }]

};