I have a chart and I update it in realtime. I notice there is a morph animation in canvas, is there a way I can control the duration of that animation after I plug new data in?
var chart = echarts.init(element);
chart.setOption(option1);
setTimeout(()=>{
// something like
chart.setOption(option1, duration='2s');
}, 1000)