下图自定义文本,this.category即分类,由于长度问题,分类年月设计成了为1017这种样式,想在提示中再把1017改为“10月17日”这种样式,求大佬告知拆分方法
function(){ return this.category.substr(0,2)+"月"+this.category.substr(2,10)+"日"+this.seriesName+this.value;}
this.category.substring(0,2)+"月"+this.category.substring(2)+"日"
______________________________________________
"1017".substring(0,2)+"月"+"1017".substring(2)+"日"