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

XUIRainfall.prototype = {

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

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

    /**
    "legend":{
            "title":"图例",
            "name":"legend",
            "type":"PUILegendInterface",
            "index":0
        }*/

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

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

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

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

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

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

    /**
    "line1":{
            "title":"折线1",
            "name":"line1",
            "type":"PUILineInterface",
            "index":1
        }*/


    //接口
    /**
    * 清除所有
    */
    ClearAllData:function () {
    },

    /**
    * 清除x轴
    */
    ClearXCont:function () {
    },

    /**
    * 清除数据
    */
    ClearData:function () {
    },

    /**
    * 设置x轴文本
    * @param {Array} arrLabel 数组 
    */
    SetXLabel:function (arrLabel) {
    },

    /**
    * 设置数据
    * @param {Array} arrDataLl 流量 
    *  @param {Array} arrDataJy 降雨量 
    */
    SetData:function (arrDataLl,arrDataJy) {
    },

}