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

XUIMoreRingPie.prototype = {

    //组件
    /**
    "gauge":{
            "title":"仪表盘",
            "name":"gauge",
            "type":"PUIGaugeInterface",
            "index":0
        }*/

    /**
    "pie1":{
            "title":"饼图1",
            "name":"pie1",
            "type":"PUIPieInterface",
            "index":1
        }*/

    /**
    "pie2":{
            "title":"饼图2",
            "name":"pie2",
            "type":"PUIPieInterface",
            "index":2
        }*/

    /**
    "pie3":{
            "title":"饼图3",
            "name":"pie3",
            "type":"PUIPieInterface",
            "index":3
         }*/

    /**
    "pie4":{
            "title":"饼图4",
            "name":"pie4",
            "type":"PUIPieInterface",
            "index":4
        }*/

    /**
    "pie5":{
            "title":"饼图5",
            "name":"pie5",
            "type":"PUIPieInterface",
            "index":5
        }*/

    /**
    "pie6":{
            "title":"饼图6",
            "name":"pie6",
            "type":"PUIPieInterface",
            "index":6
        }*/

    /**
    "pie7":{
           "title":"饼图7",
           "name":"pie7",
           "type":"PUIPieInterface",
           "index":7
       }*/

    /**
    "pie8":{
            "title":"饼图8",
            "name":"pie8",
            "type":"PUIPieInterface",
            "index":8
        }*/

    /**
    "pie9":{
           "title":"饼图9",
           "name":"pie9",
           "type":"PUIPieInterface",
           "index":9
       }*/

    /**
    "pie10":{
           "title":"饼图10",
           "name":"pie10",
           "type":"PUIPieInterface",
           "index":10
       }*/

    /**
    "pie11":{
           "title":"饼图11",
           "name":"pie11",
           "type":"PUIPieInterface",
           "index":11
       }*/

    /**
    "pie12":{
            "title":"饼图12",
            "name":"pie11",
            "type":"PUIPieInterface",
            "index":12
         }*/

    /**
    "pie13":{
            "title":"饼图13",
            "name":"pie13",
            "type":"PUIPieInterface",
            "index":13
        }*/

    /**
    "pie14":{
            "title":"饼图14",
            "name":"pie14",
            "type":"PUIPieInterface",
            "index":14
        }*/

    /**
    "pie15":{
            "title":"饼图15",
            "name":"pie15",
            "type":"PUIPieInterface",
            "index":15
        }*/


    //接口
    /**
    * 刻度最小大值
    * @param {Number} nMin 最小值
    * @param {Number} nMax 最大值
    * @property {Collection} ValueRange [0,500]
    */
    SetValueRange:function (nMin,nMax) {
    },

    /**
    * 设置数据值
    * @param {Array} arrData 数据值
    * @property {Array} DataValue [100,200,300,100,400,200,100]
    */
    SetDataValue:function (arrData) {
    },

    /**
    * 获取数据值
    * @param {Number} nIndex 下标2开始
    * @return {Number}
    */
    GetDataValue:function (nIndex) {
    },

    /**
    * 设置中间部分文本
    * @param {String} strLabel 文本一
    * @property {String} Label "装备数量"
    */
    SetLabel:function (strLabel) {
    },

    /**
    * 设置圆点大小
    * @param {Number} nSize 圆点大小
    * @property {Number} LineCircleSize 10
    */
    SetLineCircleSize:function (nSize) {
    },

    /**
    * 设置圆点显示
    * @param {Boolean} bShow 是否显示
    * @property {Boolean} LineCircleShow true
    */
    SetLineCircleShow:function (bShow) {
    },

    /**
    * 设置圆点位置
    * @param {Number} nHorPos 水平位置
    * @param {Number} nVerPos 垂直位置
    * @property {Collection} LineCirclePosition [49,50]
    */
    SetLineCirclePosition:function (nHorPos,nVerPos) {
    },

    /**
    * 设置整体大小
    * @param {Number} nSize 整体大小
    * @property {Number} AllPieSize 90
    */
    SetAllPieSize:function (nSize) {
    },

}