这是我的自定义标签js,
function(){ if(this.seriesName=="当日实际"){ var act = this.value; }else{ var plan = this.value; } return act + '/'+ plan}
我想在两个值之间加个/,但是页面效果却是这样的,怎么改呢
用了if你的act跟plan只会有一个有值,另外一个就是undefined。
function(){ if(this.seriesName=="当日实际"){ var actorplan = this.value; }else{ var actorplan = this.value; } return actorplan;}
看你的代码应该包含了当日实际和当日计划这两个系列
应该参考多系列提示来写js
图表自定义多系列提示-https://help.fanruan.com/finereport/doc-view-3245.html