图表有几个系列,这几个系列和值需要根据值来判断需不需要提示
function(){return this.name+if(this.value==1) "指标1";}
大概是这样的意思,固定显示this.name,然后去拼接后面的if判断内容,但是这个写发是错误的,问下要怎么改
function () {
return this.name + (
this.value == 1 ? "指标1" :
this.value == 2 ? "指标2" :
this.value == 3 ? "指标3" :
"其他指标"
);
}
这样?
function(){if(this.value==1) {return this.name};}
function(){
f(this.value==1) {return this.name+"指标1";}
else{
return this.name;}
你截图看一下你图表是如何的,最终想如何