function() {
var point = this;
var points = this.points;
var val = 0;
/* points.length - 2 获取柱状图 当前分类下系列点最后一个点
-2 是因为下标是以0开始 然后在减去折线图系列数量
上图 折线图系列点数量就一个
*/
if (point == points[points.length - 2]) {
/* points.length - 1 减去折线图系列点的数量 */
for (var i = 0; i < points.length - 1; i++) {
val += points[i].value
}
return val.toFixed(2).replace(/(-?\d+)(\d{3})/,"$1,$2");;
}else{
return "";
}
}
——————————————————————————————
组合图标签自定义分类下的系列和.cpt.zip