X轴坐标标签对应分类,如果想自定义其他的,可以尝试通过分类值判断,对应转换成自定义的数据
function(){
if(this=='A'){
return this+"(aa)";
}else if(this=='B'){
return this+"(bb)";
}else{
return this;
}
if(this.value=="A")
return 'a'
if(this.value=="B")
return 'b'
if(this.value=="C")
return 'c'
等等
不是这样用的。你先说一下你的需求是什么吧,目前是如何的,最终想如何