echart 如何修改timeline间距?

数据太多,有些显示不出来,默认被隐藏了
2025-04-09 09:46:05
推荐回答(1个)
回答1:

function playOrStop(){
var timeline = chart_site.component.timeline;
var nextIndex = currentIndex+1;
if(isPasue){
timeline.stop();
}else{
timeline.paly(nextIndex,true);
}
}