先贴上初始代码
axisLabel: {
textStyle: {
color: "#999", //坐标轴字颜色
},
formatter: function (params) {
console.log(params,"params")
return `${params}` + this.xDw;
},
},
这种写法formatte
r里面的this.xDw
会报错undefined
。
原因是function的独立写法,修改成对象方法
formatter: ((params)=>{
return `${params}` + this.xDw;
})
这样就能在formatter里面获取到外部变量(全局变量)了