水球图文字颜色配置

描述:当前是关于Echarts图表中的 水球图 示例。
 
            var option = {
    series: [{
        type: 'liquidFill',
        radius: '80%',
        data: [0.5, 0.45, 0.4, 0.3],
        label: {
            normal: {
                // textStyle: {
                    color: 'red',
                    insideColor: 'yellow',
                    fontSize: 50
                // }
            }
        }
    }]
};