/**
* @constructor
*/
function XUIEnergySystem() {
}
XUIEnergySystem.prototype = {
//组件
/**
"Radar0":{
"title":"雷达图0",
"name":"Radar0",
"type":"PUIRadarInterface",
"index":0
}*/
/**
"Radar1":{
"title":"雷达图1",
"name":"Radar1",
"type":"PUIRadarInterface",
"index":1
}*/
/**
"Radar2":{
"title":"雷达图2",
"name":"Radar2",
"type":"PUIRadarInterface",
"index":2
}*/
/**
"Radar3":{
"title":"雷达图3",
"name":"Radar3",
"type":"PUIRadarInterface",
"index":3
}*/
//接口
/**
* 设置坐标轴名称
* @param {Array} arrName 坐标轴名称
* @property {Array} AxisName ["Dec","Ncw","Oct","Sep","Aug","JuL","Aun","Mry","Apr","Mar","Feb","Jan"]
*/
SetAxisName:function (arrName) {
},
/**
* 设置据下标更改坐标轴名称
* @param {Number} nIndex 下标
* @param {String} strName 坐标轴名称
* @property {Collection} AxisNameByIndex [0,"Dec"]
*/
SetAxisNameByIndex:function (nIndex,strName) {
},
/**
* 删除一组数据
* @param {Number} nIndex 下标
*/
RemoveData:function (nIndex) {
},
/**
// * 增加一组数据
// * @param {String} strData 数据内容
// */
AddData:function (strData) {
},
/**
* 设置坐标轴名字颜色
* @param {String} strColor 名字颜色
* @property {Color} AxisNameColor "0xff9F9FA3"
*/
SetAxisNameColor:function (strColor) {
},
/**
* 设置坐标轴名字大小
* @param {Number} nSize 名字大小
* @property {Number} AxisNameSize 7
*/
SetAxisNameSize:function (nSize) {
},
/**
* 设置坐标轴线颜色
* @param {String} strColor 轴线颜色
* @property {Color} AxisLineColor "0xff9092A5"
*/
SetAxisLineColor:function (strColor) {
},
/**
* 设置雷达线颜色
* @param {Number} nIndex 下标
* @param {String} strColor1 0% 处的颜色
* @param {String} strColor2 100% 处的颜色
* @property {Collection} RadarLineColor [0,"0xffF54D3E","0xffF72917"]
*/
SetRadarLineColor:function (nIndex,strColor1,strColor2) {
},
/**
* 设置雷达线宽度
* @param {Number} nWidth 线宽
* @property {Number} RadarLineWidth 0.6
*/
SetRadarLineWidth:function (nWidth) {
},
/**
* 设置雷达线透明度
* @param {Number} nOpacity 线透明度
* @property {Number} RadarLineOpacity 0.7
*/
SetRadarLineOpacity:function (nOpacity) {
},
/**
* 传入随机数据
*/
Animation1:function () {
},
}