/**
* @constructor
*/
function XUIPowerFactorGauge() {
}
XUIPowerFactorGauge.prototype = {
//组件
/**
"title":{
"title":"标题",
"name":"title",
"type":"PUITitleInterface",
"index":0
}*/
/**
"pie1":{
"title":"饼图1",
"name":"pie1",
"type":"PUIPieInterface",
"index":0
}*/
/**
"pie2":{
"title":"饼图2",
"name":"pie2",
"type":"PUIPieInterface",
"index":1
}*/
/**
"gauge1":{
"title":"仪表盘1",
"name":"gauge1",
"type":"PUIGaugeInterface",
"index":2
}*/
/**
"gauge2":{
"title":"仪表盘2",
"name":"gauge2",
"type":"PUIGaugeInterface",
"index":3
}*/
/**
"gauge3":{
"title":"仪表盘3",
"name":"gauge3",
"type":"PUIGaugeInterface",
"index":4
}*/
/**
"gauge4":{
"title":"仪表盘4",
"name":"gauge4",
"type":"PUIGaugeInterface",
"index":5
}*/
/**
"gauge5":{
"title":"仪表盘5",
"name":"gauge5",
"type":"PUIGaugeInterface",
"index":6
}*/
/**
"gauge6":{
"title":"仪表盘6",
"name":"gauge6",
"type":"PUIGaugeInterface",
"index":7
}*/
//接口
/**
* 设置进度条数据
* @param {Number} NumPieValue 数值
* @property {Number} PieValue 30
*/
SetPieValue:function (NumPieValue) {
},
/**
* 设置功率因数值
* @param {Number} NumData 数值
* @property {Number} Data 1.23
*/
SetPowerFactorData:function (NumData) {
},
}