# 绑定 click 事件 触发多次问题

# 问题现象

  • 点击饼图 触发api 发现请求了多次 打印发现确实触发了多次回调

# 解决方法

  • 增加 off 方法
this.echarts.off('click');
this.chart.on('click', (data) => {
  // do sth
})
1
2
3
4

# 折线图Y轴刻度不正确

# 问题描述 (opens new window)

# 解决方法

  • 去掉 series 中 stack 的设置