banli17 opened a new issue #16161: URL: https://github.com/apache/echarts/issues/16161
### Version 5.2.2 ### Link to minimal reproduction _No response_ ### Steps To Reproduce 1. open https://echarts.apache.org/examples/zh/editor.html?c=bar-animation-delay&version=5.2.2 2. paste code ``` var xAxisData = []; var data1 = []; var data2 = []; for (var i = 0; i < 100; i++) { xAxisData.push('A' + i); data1.push((Math.sin(i / 5) * (i / 5 - 10) + i / 6) * 5); data2.push((Math.cos(i / 5) * (i / 5 - 10) + i / 6) * 5); } option = { title: { text: 'Bar Animation Delay' }, legend: { data: ['bar', 'bar2'] }, toolbox: { // y: 'bottom', feature: { magicType: { type: ['stack'] }, dataView: {}, saveAsImage: { pixelRatio: 2 } } }, tooltip: {}, xAxis: { data: xAxisData, splitLine: { show: false }, axisLine: { onZero: false } }, yAxis: { scale: true, }, series: [ { name: 'bar', type: 'bar', data: data1, emphasis: { focus: 'series' }, animationDelay: function (idx) { return idx * 10; } }, { name: 'bar2', type: 'bar', data: data2, emphasis: { focus: 'series' }, animationDelay: function (idx) { return idx * 10 + 100; } } ], animationEasing: 'elasticOut', animationDelayUpdate: function (idx) { return idx * 5; } }; ``` ### Current Behavior 从y = 0 开始绘制 ### Expected Behavior 希望从-轴 最下面开始绘制 ### 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]
