提示标签中默认的是 下图这样的 自定义之后就只显示一个系列了 格式是单系列的 怎么按照这种格式去显示多系列的
function(){ var points = this.points, value = this.category; for(var i = 0, len = points.length; i < len; i++) { if(points[i].series.visible){ value += points[i].seriesName+':'+points[i].value; } } return value; }