Echarts实现水波图水球图水柱图的图表——liquidFil
2020-03-09 本文已影响0人
Promise_Irene
通过echarts实现水波球水球图水柱图的图表样式(图表是动态的)
npm install echarts-liquidfill
npm i echarts@^4.2.1 zrender@^4.0.7
图片展示


demo参考
var value = 0.48;
var data = [value, value, value, value, value ];
var option = {
backgroundColor: '#fff',
series: [{
type: 'liquidFill',
radius: '70%',
center: ['50%', '40%'],
data: [0.48],
color: ['red'],
amplitude: '8%',
waveLength: '80%',
phase: 'auto',
period: 'auto',
direction: 'right',
shape: 'circle',
waveAnimation: true,
animationEasing: 'linear',
animationEasingUpdate: 'linear',
animationDuration: 2000,
animationDurationUpdate: 1000,
outline: {
show: false,
borderDistance: 8,
itemStyle: {
color: 'none',
borderColor: '#294D99',
borderWidth: 8,
shadowBlur: 20,
shadowColor: 'rgba(0, 0, 0, 0.25)'
}
},
backgroundStyle: {
color: '#E3F7FF'
},
itemStyle: {
opacity: 0.95,
shadowBlur: 50,
shadowColor: 'rgba(0, 0, 0, 0.4)'
},
label: {
show: true,
color: '#294D99',
insideColor: '#fff',
fontSize: 50,
fontWeight: 'bold',
align: 'center',
baseline: 'middle',
position: 'inside'
},
emphasis: {
itemStyle: {
opacity: 0.8
}
}
}]
};