在设置echarts折线图时,发现y轴数值跟理想情况不一样,似乎比想要的值要高一些
理想情况如图:
实际情况如图
错误原因: 在series里设置了stack属性,如果有stack,值是累加的,不需要累加效果的话,在series里去掉stack值就行。
series: [
{
name: "邮件营销",
type: "line",
// stack: "总量", set value does not accumulate
data: [0, 120, 132, 101, ],
smooth: true, //display smoothly
},
{
name: "联盟广告",
type: "line",
// stack: "总量", set value does not accumulate
data: [0, 220, 182, 191,],
smooth: true,
}
]