ecomfe / echarts-liquidfill

Liquid Fill Chart for Apache ECharts
https://ecomfe.github.io/echarts-liquidfill/example/
BSD 3-Clause "New" or "Revised" License
1.47k stars 620 forks source link

不能使用function()来动态设定颜色 #97

Open Royce-DaDaDa opened 5 years ago

Royce-DaDaDa commented 5 years ago
var option = {
    series: [{
        type: 'liquidFill',
        data: [0.6],
    backgroundStyle: {
            borderWidth: 5,
            borderColor: '#156ACF',
            color: function(params){
                return '#e9f540'
            },
       opacity:0.6
        },
    }]
};
我在像上面这样使用函数来为设置颜色时,函数不会执行,导致水球图的背景颜色成了灰色,设置波浪的颜色的时候也是一样,函数没有执行,希望能解答一下,谢谢!
Ovilia commented 4 years ago

backgroundStyle.color 不支持回调函数形式。由于背景色只有一个,所以也不存在根据回调函数参数来设置的场景,请问为什么有这个需求?