这样的组合图,当折线图1>折线图2则标签变红,怎么实现?
function(){
if(this.points[0].value>this.points[1].value)
{
this.points[0].color = "red";
}
return this.value;}
设置在折线图的标签中js
不是大于就是小于,你自己看着改就行了。