图表的坐标轴字符是否可以特定值设定颜色;
比如Y轴有100、110、120、130;对Y轴的120设定为红色;
不是设置警戒线
里面写IF判断
-------
function(){
if(this=1){
return ""+(this*100).toFixed(2)+"%"+"";
}else {
return (this*100).toFixed(2)+"%"; }
}
-------------
WorkBook2.rar
可以做个折线图,为120的,那条线就值全为120,就是一条横线
参考https://bbs.fanruan.com/wenda/question/182891.html
function() {
if(this==120)
{
return"" + this +"";
else return this;