点击数据,感觉加载的时候感觉有点慢,点击某一个数据有点卡顿js代码:function(){var per=(FR.remoteEvaluate("value('ds2',7,1,'"+this.category+"')")*100).toFixed(0);var per1=(FR.remoteEvaluate("value('ds2',8,1,'"+this.category+"')")*100).toFixed(0);//获取数据集 ds1 内的第三列,且与该列对应的第一列的值是 this.categoryreturn "本月: "+this.category+"本月发货量: "+this.value+"   同比增长率 "+(per<0?"▼ ":"▲ ")+Math.abs(per)+"%" +"   环比增长率 "+(per<0?"▼ ":"▲ ")+Math.abs(per1)+"%"//per小于0时显示红色倒三角图标,per大于0时显示绿色正三角图标,并对per取绝对值}