series中的loop设置为false,未能停止动画。constantSpeed也没有效果
hsj8038 opened this issue · 1 comments
hsj8038 commented
series中的属性loop设置为false,希望在播放一遍后停止动画,但没有任何变化,界面还是不断做重启绘画工作。对constantSpeed设置为2秒,也没有效果,和不设置的一样。
请问,这两个属性支持吗?
hsj8038 commented
series.push({
name: item[0] + ' Top10',
type: 'lines',
zlevel: 1,
effect: {
show: true,
constantSpeed: 2,
trailLength: 0.7,
color: '#fff',
symbolSize: 3,
loop:false,
},
lineStyle: {
normal: {
color: color[i],
width: 0,
curveness: 0.2
}
},
data: convertData(item[1])
},
{
name: item[0] + ' Top10',
type: 'lines',
zlevel: 2,
effect: {
show: true,
constantSpeed: 2,
trailLength: 0,
symbol: planePath,
symbolSize: 15,
loop:false,
},
lineStyle: {
normal: {
color: color[i],
width: 1,
opacity: 0.4,
curveness: 0.2
}
},
data: convertData(item[1])
},
。。。