水波文字百分比,如何从零开始往上加。echarts 球配置项内容和展示

水波文字百分比,如何从零开始往上加?

配置项如下
      option = {
    title: {
        text: '水波晃动的效果'
    },
    series: [{
        type: 'liquidFill',
        data: [{
            value: 0.6,
            itemStyle: {
                normal: {
                    color: '#b4e6f5'
                }
            }
        }, {
            value: 0.55,
            itemStyle: {
                normal: {
                    color: '#9edcef'
                }
            }
        }, {
            value: 0.5,
            itemStyle: {
                normal: {
                    color: '#77cae4'
                }
            }
        }],
        amplitude: '3%',
        outline: {
            show: false
        },
        backgroundStyle: {
            color: '#d7f6ff'
        }
    }]
};
    
截图如下