/**
* @constructor
*/
function XUITHProgressBar() {
}

XUITHProgressBar.prototype = {

    //组件
    /**
    "xAxis":{
         "title":"x轴坐标系",
         "name":"xAxis",
         "type":"PUIXAxisInterface",
         "index":0
     }*/

    /**
    "yAxis0":{
         "title":"y轴坐标系0",
         "name":"yAxis0",
         "type":"PUIYAxisInterface",
         "index":0
     }*/

    /**
    "yAxis1":{
        "title":"y轴坐标系1",
        "name":"yAxis1",
        "type":"PUIYAxisInterface",
        "index":1
    }*/

    /**
    "grid":{
         "title":"坐标系网格组件",
         "name":"grid",
         "type":"PUIGridInterface",
         "index":0
     }*/

    /**
    "bar0":{
         "title":"柱状图组件0",
         "name":"bar0",
         "type":"PUIBarInterface",
         "index":0
     }*/

    /**
    "bar1":{
        "title":"柱状图组件1",
        "name":"bar1",
        "type":"PUIBarInterface",
        "index":1
    }*/

    /**
    "bar2":{
        "title":"柱状图组件2",
        "name":"bar2",
        "type":"PUIBarInterface",
        "index":2
    }*/


    //接口
    /**
     * 设置进度条归0
     */
    SetProgressBarZero:function () {
    },

    /**
     * 设置进度条
     * @param {Float} fValue 进度
     * @property {Float} Value 60
     */
    SetProgressBarValue:function (fValue) {
    },

    /**
     * 设置温度范围
     * @param {Number} nMax 最大值
     * @property {Number} nMaxData 100
     */
    SetTemperatureRange:function (nMax) {
    },

    /**
     * 设置进度条颜色
     * @param {String} strColorStart 进度条初始值颜色
     * @param {String} strColorEnd 进度条末尾颜色
     * @property {Collection} ProgressBarColor ["0xff4285FF", "0xff03DFFF"]
     */
    SetProgressBarColor:function (strColorStart,strColorEnd) {
    },

    /**
     * 设置上标注的图标路径
     * @param {ImageProp} strTopImg 上标注的路径
     * @property {ImageProp} IconTopImage "XUITHProgressBar/images/zuo2_jindu_huakuai2.png"
     */
    SetIconTopImage:function (strTopImg) {
    },

    /**
     * 设置右滑块的图标路径
     * @param {ImageProp} strRightImg 右滑块的路径
     * @property {ImageProp} IconRightImage "XUITHProgressBar/images/zuo2_jindu_huakuai3.png"
     */
    SetIconRightImage:function (strRightImg) {
    },

    /**
     * 设置右滑块或上标注的图标大小
     * @param {Number} nIndex 索引0~1 0:上标注 1:右标注
     * @param {Number} nWidth 宽度
     * @param {Number} nHeight 高度
     * @property {Collection} nIconSize [-1,0,0]
     */
    SetIconSize:function (nIndex,nWidth,nHeight) {
    },

    /**
     * 设置进度条粗细
     * @param {Number} nThick 粗细
     * @property {Number} nThickData 10
     */
    SetThickness:function (nThick) {
    },

    /**
     * 设置进度条圆角
     * @param {Number} nRadius 圆角
     * @property {NUmber} BarBorderRadius 0
     */
    SetBarBorderRadius:function (nRadius) {
    },

    /**
     * 设置标注显示
     * @param {Boolean} bShow 是否显示
     * @property {Boolean} MarkPointShow true
     */
    SetMarkPointShow:function (bShow) {
    },

}