Linjianwei99 opened a new issue, #18941: URL: https://github.com/apache/echarts/issues/18941
### Version 5.4.3 ### Link to Minimal Reproduction https://echarts.apache.org/examples/zh/editor.html?c=line-simple&version=5.4.3&decal=1 ### Steps to Reproduce import * as echarts from 'echarts'; var chartDom = document.getElementById('main'); var myChart = echarts.init(chartDom); var option; option = { xAxis: { type: 'category', data: ['A', 'B', 'C', 'D', 'E', 'F'] }, yAxis: { type: 'value' }, series: [ { name: '注册总量', type: 'line', data: [502.84, 205.97, 332.79, 281.55, 398.35, 214.02] }, { name: '滑行的光点', type: 'lines', coordinateSystem: 'cartesian2d', polyline: true, effect: { show: true, period: 10, trailLength: 0.1, symbolSize: 8, symbol: 'circle', color: '#000' }, data: [ { coords: [ ['A', 502.84], ['B', 205.97], ['C', 332.79], ['D', 281.55], ['E', 398.35], ['F', 214.02] ] } ] } ] }; option && myChart.setOption(option); ### Current Behavior  只能在canvas模式下才能正确显示动画效果,svg模式则无法显示 ### Expected Behavior canvas模式下才能正确显示动画效果 ### Environment ```markdown - OS: - Browser: - Framework: ``` ### Any additional comments? _No response_ -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
