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

XUIPolylineProgressBar.prototype = {

    //接口
    /**
    * 数据
    * @param {Number} nValue 数据值
    */
    SetData:function (nValue) {
    },

    /**
    * 获取数据
    * @return {Number}
    */
    GetData:function () {
    },

    /**
    * 线宽
    * @param {Number} nWidth 线宽
    * @property {Number} LineWidth 4
    */
    SetLineWidth:function (nWidth) {
    },

    /**
    * 获取线宽
    * @return {Number}
    */
    GetLineWidth:function () {
    },

    /**
    * 半径
    * @param {Number} nRadius 半径
    * @property {Number} Radius 8
    */
    SetRadius:function (nRadius) {
    },

    /**
    * 获取半径
    * @return {Number}
    */
    GetRadius:function () {
    },

    /**
    * 获取最大值
    * @return {Number}
    */
    GetMaxValue:function () {
    },

    /**
    * 最大值 
    * @param {Number} nValue 最大值
    * @property {Number} MaxValue 200
    */
    SetMaxValue:function (nValue) {
    },

    /**
    * 一段数据进度线色
    * @param {String} strColor1 颜色1
    * @param {String} strColor2 颜色2
    * @property {Collection} OneprogressLineColor ["0xff00FEC3","0xff23F4A1"]
    */
    SeOneprogressLineColor:function (strColor1,strColor2) {
    },

    /**
    * 二段数据进度线色
    * @param {String} strColor1 颜色1
    * @param {String} strColor2 颜色2
    * @property {Collection} TwoprogressLineColor ["0xff00FEC3","0xff23F4A1"]
    */
    SeTwoprogressLineColor:function (strColor1,strColor2) {
    },

    /**
    * 三段数据进度线色
    * @param {String} strColor1 颜色1
    * @param {String} strColor2 颜色2
    * @property {Collection} ThreeprogressLineColor ["0xff00FEC3","0xff23F4A1"]
    */
    SetThreeprogressLineColor:function (strColor1,strColor2) {
    },

    /**
    * 下方长刻度轴颜色
    * @param {String} strColor 刻度轴颜色
    * @property {Color} BotAxisColor "0x5fa818ca8"
    */
    SetBotAxisColor:function (strColor) {
    },

    /**
    * 下方字体大小
    * @param {Number} nValue 字体大小
    * @property {Number} BotFontSize 20
    */
    SetBotFontSize:function (nValue) {
    },

    /**
    * 左方长刻度轴颜色
    * @param {String} strColor 刻度轴颜色
    * @property {Color} LeftAxisColor "0x5fa818ca8"
    */
    SetLeftAxisColor:function (strColor) {
    },

    /**
    * 左方字体大小
    * @param {Number} nValue 字体大小
    * @property {Number} LeftFontSize 20
    */
    SetLeftFontSize:function (nValue) {
    },

    /**
    * 上方长刻度轴颜色
    * @param {String} strColor 刻度轴颜色
    * @property {Color} TopAxisColor "0x5fa818ca8"
    */
    SetTopAxisColor:function (strColor) {
    },

    /**
    * 上方字体大小
    * @param {Number} nValue 字体大小
    * @property {Number} TopFontSize 20
    */
    SetTopFontSize:function (nValue) {
    },

    /**
    * 圆点颜色
    * @param {String} strColor1 圆点颜色
    * @param {String} strColor2 圆框颜色
    * @property {Collection} botSymbolColor ["0xffDEBE00","0xffffffff"]
    */
    SetSymbolColor:function (strColor1,strColor2) {
    },

}