segmafrontend opened a new issue #10318: 堆叠图一组数据为line,另一组数据为bar时,无法正常堆叠 URL: https://github.com/apache/incubator-echarts/issues/10318 ### Version 4.2.1-rc1 ### Reproduction link [https://gallery.echartsjs.com/editor.html?c=xmlSS3qFS8&v=1](https://gallery.echartsjs.com/editor.html?c=xmlSS3qFS8&v=1) ### Steps to reproduce option = { title: { text: 'Awesome Chart' }, xAxis: { data: ['Sun', 'Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat'] }, yAxis: {}, series: [{ type: 'line', data:[220, 182, 191, 234, 290, 330, 310], stack: 'all' }, { type: 'bar', data:[220, 182, 191, 234, 290, 330, 310], stack: 'all' }] // bar在line的后面就无法正常堆叠,交换顺序就正常了 /*series: [{ type: 'bar', data:[220, 182, 191, 234, 290, 330, 310], stack: 'all' }, { type: 'line', data:[220, 182, 191, 234, 290, 330, 310], stack: 'all' }]*/ }; ### What is expected? 正常堆叠 ### What is actually happening? 线图没有正常堆叠到柱图上 <!-- This issue is generated by echarts-issue-helper. DO NOT REMOVE -->
---------------------------------------------------------------- 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. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
