水波图echarts 球配置项内容和展示

基础水波图

配置项如下
      option = {
    backgroundColor: "#0e2147",
	title: {
        show: true,
        text: '违规项',
        x: '50%',
        y: '60%',
        z: 10,
        textAlign: 'center',
        textStyle: {
            color: '#ffffff',
            fontSize: 68,
			fontWeight: 500
        },
    },
    series: [{
        name: '违规项',
        type: 'liquidFill',
		radius: '60%',
		center: ['50%', '45%'],
        data: [70/100],
        label:{
            normal:{
                textStyle:{
                    color: '#ffffff',
                    fontSize: 68,
                }
            }
        },
        color: ['#4366f3'],
        backgroundStyle: {
            color: 'rgba(39,115,229,0.12)'
        },
        outline: {
            borderDistance: 0,
            itemStyle: {
                borderWidth: 5,
                borderColor: 'rgba(49,102,255,0.5)',
            }
        },
        // amplitude: 0,
    }]
};
    
截图如下