wenbinobject opened a new issue #10027: 折线图 堆叠bug。 URL: https://github.com/apache/incubator-echarts/issues/10027 <!-- Please Use https://ecomfe.github.io/echarts-issue-helper to create the issue. Otherwise, it will be closed immediately. Questions in the form of *How to use ...* should be at Stack Overflow rather than GitHub issue list. 请注意,所有 issue 必须由 https://ecomfe.github.io/echarts-issue-helper/?lang=zh-cn 创建,不然将会被直接关闭。 Issues 中不要问「如何使用 ECharts 实现……功能」的问题,相关问题请到 SegmentFault 或 Stack Overflow 提问,详见上面的链接。 --> This issue is not created by [echarts-issue-helper](https://ecomfe.github.io/echarts-issue-helper) and will be soon closed. option = { title: { text: '折线图堆叠' }, tooltip: { trigger: 'axis' }, legend: { data:['邮件营销','联盟广告','视频广告','直接访问','搜索引擎'] }, grid: { left: '3%', right: '4%', bottom: '3%', containLabel: true }, toolbox: { feature: { saveAsImage: {} } }, xAxis: { type: 'category', boundaryGap: false, data: ['周一','周二','周三','周四','周五','周六','周日'] }, yAxis: { type: 'value' }, series: [ { name:'邮件营销', type:'line', stack: '总量', data:[25, 11, 30, 3, 95, 101, 91] }, { name:'联盟广告', type:'line', stack: '总量', data:[5, 5, 0, 5, 8, 8, 3] }, ] }; 数据这样就会出现,展示有误的效果 我这个option直接时官网实例里面的 希望得到尽快回复
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on 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]
