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

XUIStaggeredLabels.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
        }*/

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


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

    /**
    * 删除一个数据
    * @param {Number} nIndex 下标
    */
    ClearOneData:function (nIndex) {
    },

    /**
    * 增加数据
    * @param {String} newDate 新数据日期
    * @param {Number} newData 新数据值
    */
    AddData:function (newDate,newData) {
    },

    /**
    * 获得一个数据
    * @param {Number} nIndex 数据下标
    */
    GetOneData:function (nIndex) {
    },

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

    /**
    *  修改所有数据
    * @param {Array} newData 新数据
    */
    ChangeAllData:function (newData) {
    },

    /**
    *  修改一个数据
    * @param {Number} nIndex 下标
    * @param {Number} newData 新数据
    */
    ChangeOneData:function (nIndex,newData) {
    },

}