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

XUIGaugePie.prototype = {

    //组件
    /**
    "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
    }*/

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


    //接口
    /**
     * 修改数据
     * @param {Number} nPieValue 需修改的值
     * @property {Number} PieValue 6100
     */
    SetPieValue:function (nPieValue) {
    },

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

    /**
     * 仪表盘外环位置
     * @param {Array} arrGaugeCenter 仪表盘外环位置
     * @property {Array} GaugeCenter ["50%","50%"]
     */
    SetGaugeCenter:function (arrGaugeCenter) {
    },

    /**
     * 外层饼图的位置
     * @param {Array} arrPieCenter 外层饼图的位置
     * @property {Array} PieCenter ["50%","50%"]
     */
    SetPieCenter:function (arrPieCenter) {
    },

    /**
     * 仪表盘显示范围
     * @param {Number} nValueMin 仪表盘最小值
     * @param {Number} nValueMax 仪表盘最大值
     * @property {Collection} ValueRange [0,10000]
     */
    SetValueRange:function (nValueMin,nValueMax) {
    },

}