移动端页面中条形图的Y轴标签过长,需要把超过4个字符之后的用省略号显示
function(){
if(this.length<=4){return this
}else{
return this.substr(0,4)+"...";
}