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

XUIMasterPainterCholices.prototype = {

    //组件
    /**
    "title":{
          "title":"标题",
          "name":"title",
          "type":"PUITitleInterface",
          "index":0
        }*/

    /**
    "tooltip":{
          "title":"提示框",
          "name":"tooltip",
          "type":"PUITooltipInterface",
          "index":0
        }*/

    /**
    "xAxis":{
          "title":"x轴",
          "name":"xAxis",
          "type":"PUIXAxisInterface",
          "index":0
        }*/

    /**
    "yAxis":{
          "title":"y轴",
          "name":"yAxis",
          "type":"PUIYAxisInterface",
          "index":0
        }*/

    /**
    "scatter":{
          "title":"散点图",
          "name":"scatter",
          "type":"PUIScatterInterface",
          "index":0
        }*/


    //接口
    /**
    * 删除所有数据
    */
    ClearAllData:function () {
    },

    /**
    * 删除一组数据
    * @param {Number} nIndex 数据
    */
    ClearGroupData:function (nIndex) {
    },

    /**
    * 获得所有数据
    */
    GetAllData:function () {
    },

    /**
    * 修改数据
    * @param {Number} nIndex 数据
    * @param {Number} newData 数据
    */
    ChangeData:function (nIndex,newData) {
    },

}