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

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

    /**
    "inside":{
          "title":"内置缩放组件",
          "name":"inside",
          "type":"PUIDataZoomInsideInterface",
          "index":0
        }*/

    /**
    "slider":{
          "title":"滑动缩放组件",
          "name":"slider",
          "type":"PUIDataZoomSliderInterface",
          "index":1
        }*/

    /**
    "line":{
          "title":"折线",
          "name":"line",
          "type":"PUILineInterface",
          "index":0
        }*/


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

    /**
    * 增加数据
    * @param {Number} nIndex 增加的数据量
    */
    AddData:function (nIndex) {
    },

    /**
    * 获得部分数据
    * @param {Number} nIndex 获得数据个数
    * @param {String} strDate 开始日期
    */
    GetGroupData:function (nIndex,strDate) {
    },

    /**
    *  修改所有数据
    */
    ChangeAllData:function () {
    },

    /**
    *  修改部分数据
    * @param {Array} newDate 存放数据的数组
    * @param {String} strDate 开始日期
    */
    ChangeGroupData:function (newDate,strDate) {
    },

}