|
发表于 2018-7-2 11:29:50
|
显示全部楼层
本帖最后由 MrGeng 于 2018-7-2 11:35 编辑
找到graphreportlist.ftl文件,修改showReport(data, tabName) 方法中 加入判断类型是否为pie- if("${x['graph_type']}" == "pie"){
-
- var arrNew = [];
- $.map(data,function (n,i) {
- arrNew.push([categories[i],n["${x['field_name']}"] * 1 || 0])
- })
- series.push({type: "${x['graph_type']}", name: "${x['graph_name']}", data: arrNew});
- }
复制代码 |
|