|
|
@ -868,13 +868,13 @@ function initSensorLiquidChart(){ |
|
|
|
} |
|
|
|
}, |
|
|
|
label:{ |
|
|
|
formatter:function(param){ |
|
|
|
// @修订
|
|
|
|
// param.seriesName + '\n'+ param.name + '\n'+ max +'单位/'+ xn +'单位('+param.value*100+'%)';
|
|
|
|
return param.seriesName + '\n' |
|
|
|
+ param.name + '\n' |
|
|
|
+ max +'单位/'+ param.value*max +'单位('+param.value*100+'%)'; |
|
|
|
}, |
|
|
|
// formatter:function(param){
|
|
|
|
// // @修订
|
|
|
|
// // param.seriesName + '\n'+ param.name + '\n'+ max +'单位/'+ xn +'单位('+param.value*100+'%)';
|
|
|
|
// return param.seriesName + '\n'
|
|
|
|
// + param.name + '\n'
|
|
|
|
// + max +'单位/'+ param.value*max +'单位('+param.value*100+'%)';
|
|
|
|
// },
|
|
|
|
fontSize:siz, |
|
|
|
}, |
|
|
|
backgroundStyle://内图背景色边
|
|
|
@ -939,8 +939,8 @@ function disableLiquidFillAnimation(nodeId){ |
|
|
|
function updateChartsOption(propertyName,value){ |
|
|
|
// 当前地图容器
|
|
|
|
var current_edit_obj = cfg.current_edit_obj; |
|
|
|
let max=current_edit_obj.attr("max"); |
|
|
|
max=max?max:1000; |
|
|
|
// let max=current_edit_obj.attr("max");
|
|
|
|
// max=max?max:1000;
|
|
|
|
// 当前地图数据节点
|
|
|
|
const optionNode=current_edit_obj.children()[0]; |
|
|
|
// 获取数据属性
|
|
|
@ -955,11 +955,11 @@ function updateChartsOption(propertyName,value){ |
|
|
|
// 写入属性
|
|
|
|
optionNode.setAttribute("option",JSON.stringify(option)); |
|
|
|
// 设置lable显示格式
|
|
|
|
option.series[0].label.formatter=function(param){ |
|
|
|
return param.seriesName + '\n' |
|
|
|
+ param.name + '\n' |
|
|
|
+ max +'单位/'+ param.value*max +'单位('+param.value*100+'%)'; |
|
|
|
}; |
|
|
|
// option.series[0].label.formatter=function(param){
|
|
|
|
// return param.seriesName + '\n'
|
|
|
|
// + param.name + '\n'
|
|
|
|
// + max +'单位/'+ param.value*max +'单位('+param.value*100+'%)';
|
|
|
|
// };
|
|
|
|
// 更新地图
|
|
|
|
chart.setOption(option); |
|
|
|
} |
|
|
@ -1264,6 +1264,10 @@ function resetNodeData(id,type){ |
|
|
|
} else if(cid == "3"){ //仪表盘
|
|
|
|
initSensorDashChart(); |
|
|
|
} else if(cid == "4"){ //液位图
|
|
|
|
// 液位图绑定数据 不进行初始化数据
|
|
|
|
if(id!=null){ |
|
|
|
return;; |
|
|
|
} |
|
|
|
initSensorLiquidChart(); |
|
|
|
} |
|
|
|
} else if(nid=="6"){ //地图
|
|
|
|