/**
* @constructor
*/
function XUIHorizontalProgress() {
}
XUIHorizontalProgress.prototype = {
//接口
/**
* 修改背景颜色
* @param {String} strColor
* @property {String} BgColor "0xff202C44"
*/
ChangeBgColor:function (strColor) {
},
/**
* 改变进度间距
* @param {String} strTop
* @property {String} ProgressTop "2%"
*/
ChangeProgressTop:function (strTop) {
},
/**
* 改变进度上边距
* @param {String} strTop
* @property {String} ProTop "2% 0"
*/
ChangeProTop:function (strTop) {
},
/**
* 改变进度高度
* @param {String} strHeight
* @property {String} ProgressHeight "12%"
*/
ChangeProgressHeight:function (strHeight) {
},
/**
* 修改进度颜色
* @param {Number} nIndex 序号
* @param {String} strColor 颜色
* @property {Collection} ProgressColor [0,"0xffff6f02"]
*/
ChangeProgressColor:function (nIndex,strColor) {
},
/**
* 添加进度
*/
AddProgress:function () {
},
/**
* 删除一组进度
*/
DeleteProgress:function () {
},
/**
* 改变满意度数值
* @param {Array} arrData
* @property {Array} ProgressData [5,4,2,5]
*/
SetProgressData:function (arrData) {
},
}