在这个链接中https://help.fanruan.com/finereport10.0/doc-view-4610.html?source=4 组合图中的折线图为2条折线时, 自定义标签就不会生效了, 我应该怎么修改呢?文章中自定义js如下:function sumLabel(){ const point = this; const points = point.points; const validPoints = points.filter( (point) => point.isVisible() ); if(point == validPoints) //把汇总值显示在第2个系列 { let value = 0; for(let i = 0; i < validPoints.length-1; i++) //求和的值包含的系列为从下往上数前2个系列 { value += validPoints.value; } return value; } else { return ""; }}