水球图

描述:当前是关于Echarts图表中的 水球图 示例。
 
            
option = {
    series: [{
        type: 'liquidFill',
        radius: '50%',
        data: [0.6],
        color: 'rgba(67,209,100,1)',
        label: {
            normal: {
                color: '#fff',
                insideColor: 'transparent',
                textStyle: {
                    fontSize: 16,
                    fontWeight: 'bold',
                    fontFamily: 'Microsoft YaHei'
                }
            }
        },
        outline: {
            show: true,
            borderDistance: 5,
            itemStyle: {
                borderColor: 'rgba(67,209,100,1)',
                borderWidth: 2
            }
        },
        backgroundStyle: {
            color: 'rgba(67,209,100,.3)'
        }
    }]

};