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

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

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

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

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

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


    //接口
    /** 
    * 设置数据
    * @param {Number} nIndex 索引下标
    * @param {Array} arrLineData 折线数据
    */
    SetData:function (nIndex,arrLineData) {
    },

    /** 
    * 设置x轴数据
    * @param {Array} arrData x轴数据
    */
    SetXData:function (arrData) {
    },

    /**
    * 清空
    */
    RemoveAll:function () {
    },

    /** 
    * 添加数据
    * @param {Array} arrLineData 折线数据
    * @param {String} strlineName 折线数据名称
    */
    AddData:function (arrLineData,strlineName) {
    },

    /** 
    * 添加一个数据
    * @param {Number} nIndex 索引下标
    * @param {Number} nValue 一个数据
    */
    AddOneData:function (nIndex,nValue) {
    },

    /** 
    * 添加x轴数据名称
    * @param {String} strName x轴数据名称
    */
    AddXOneData:function (strName) {
    },

    /** 
    * 获取一个数据
    * @param {Number} nIndex 下标
    * @param {String} strName 系列名称
    * @return {Number} 
    */
    GetLineOneData:function (nIndex,strName) {
    },

    /** 
    * 修改折线数据
    * @param {Number} nIndex 索引下标
    * @param {Number} nvalue 新数据
    * @param {String} strName 系列名称
    */
    EditLineOneData:function (nIndex,nvalue,strName) {
    },

    /** 
    * 删除一个数据
    * @param {Number} nIndex 索引下标
    * @param {String} strName 折线系列名称 
    */
    DeleteLineOneData:function (nIndex,strName) {
    },

    /** 
    * 删除一项数据
    * @param {Number} nIndex 索引下标
    */
    DeleteItemData:function (nIndex) {
    },

}