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

项目

配置项如下
      var value = 0.6;

option = {
    title: {
        text: '',
    },
    series: [
        {
            type: 'liquidFill',
            radius: '78.1%',
            center: ['50%', '50%'],
            label: {
                normal: {
                  formatter: '',
                }
              },
            color: [
                {
                    type: 'linear',
                    x: 0,
                    y: 0,
                    x2: 0,
                    y2: 1,
                    colorStops: [
                        {
                            offset: 0,
                            color: 'rgba(64, 219, 116, .6)', // 0% 处的颜色
                        },
                        {
                            offset: 1,
                            color: 'rgba(128, 202, 152, .6)', // 100% 处的颜色
                        },
                    ],
                },
            ],
            data: [value, value], // data个数代表波浪数
            backgroundStyle: {
                borderWidth: 1,
                borderColor: 'rgba(55, 211, 255, 0.42)',
                color: 'rgba(12, 41, 49, 0)',
            },
            //  label: {
            //             formatter: 
            //         },
            outline: {
                show: false,
            },
        },
    ],
};

    
截图如下