F-loat / mpvue-echarts

📈 适用于 mpvue 的 echarts 组件
337 stars 91 forks source link

为什么例子中的图表的 legend 除散点图外 几乎都不能显示? #47

Closed sogoodgithub closed 5 years ago

SmithBox commented 5 years ago

你设置legend的位置了吗,还有legend一定要跟series里的name对应上。我这里正常显示 legend: { left: '7.5', data: [ { name: '老客户', icon: 'circle' }, { name: '新客户', icon: 'circle' } ] }, series: [ { name: '老客户', type: 'line', symbol: 'none', data: [0, 0, 0, 0, 0, 0, 0] }, { name: '新客户', type: 'line', symbol: 'none', data: [0, 0, 0, 0, 0, 0, 0] } ]

Virczz commented 5 years ago

emmm。经过我测试并翻看文档,发现legend不显示的原因,和引用的echart完整度有关。精简版echart.simple.js,不会展示legend。而echart.common.js和完整版,均可以展示。