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

XUILineMobile.prototype = {
    //事件
    /**
    * 左击节点
    * @eventname XUI_LINEMOBILE_CLICK
    * @eventid 0x00001010  
    * @param {String} CLICKName 节点数据名称
    */

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

    /**
    "legend":{
          "title":"图例",
          "name":"legend",
          "type":"PUILegendInterface",
          "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
        }*/

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

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

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


    //接口
    /** 
    * 改变背景颜色
    * @param {String} strbackgroundColor 背景颜色
    * @property {Color} seriesLeftNumColor "0xff000000"
    */
    SetbackgroundColor:function (strbackgroundColor) {
    },

    /**
    * 改变标题字体颜色
    * @param {String} TitleColor 字体颜色  
    * @property {Color} TitleColor "0xff000000"
    */
    SetTitleColor:function (TitleColor) {
    },

    /**
    * 改变标题字体内容
    * @param {String} TitleText 字体内容
    * @property {String} TitleText "示例标题"
    */
    SetTitleText:function (TitleText) {
    },

    /**
    * 改变副标题字体内容
    * @param {String} strsubText 副标题字体内容
    * @property {String} TitlesubText "示例副标题"
    */
    SetTitleSubText:function (strsubText) {
    },

    /**
    * 改变坐标指示器类型
    * @param {String} strStyle 指示器类型   
    * @property {Combo} AxisPointerStyle ["shadow","line","none","cross"]
    */
    SetAxisPointerStyle:function (strStyle) {
    },

    /**
    * 改变提示框背景颜色
    * @param {String} strColor 背景颜色   
    * @property {Color} ToolTipBgColor "0xFF6F6F6F"
    */
    SetToolTipBgColor:function (strColor) {
    },

    /**
    * 改变提示框边框颜色
    * @param {String} strColor 边框颜色   
    * @property {Color} ToolTipBorderColor "0xFF333333"
    */
    SetToolTipBorderColor:function (strColor) {
    },

    /**
    * 改变提示框边框大小
    * @param {Number} nWidth 边框大小  
    * @property {Number} ToolTipBorderWidth 1
    */
    SetToolTipBorderWidth:function (nWidth) {
    },

    /**
    * 改变提示框文字颜色
    * @param {String} strColor 文字颜色   
    * @property {Color} ToolTipColor "0xFFFFFFFF"
    */
    SetToolTipColor:function (strColor) {
    },

    /**
    * 改变提示框文字大小
    * @param {Number} nSize 文字大小  
    * @property {Number} ToolTipFontSize 14
    */
    SetToolTipFontSize:function (nSize) {
    },

    /**
    * 改变标记线的颜色
    * @param {String} strlineStyleColor 标记线的颜色  
    * @property {Color} lineStyleColor "0xff000000"
    */
    SetlineStyleColor:function (strlineStyleColor) {
    },

    /**
    * 设置线节点类型
    * @param {String} sType 线节点类型
    * @property {Combo} NodeType ["emptyCircle","rect","circle","roundRect", "triangle", "diamond", "pin", "arrow", "none"]
    */
    SetNodeType:function (sType) {
    },

    /**
    * 设置节点大小
    * @param {Number} nSize 节点大小
    * @property {Number} NodeSize 4
    */
    SetNodeSize:function (nSize) {
    },

    /**
    * 设置X轴类目数据
    * @param {Array} arrData 类目数据
    */
    SetxAxisData:function (arrData) {
    },

    /**
    * 清除所有数据
    */
    SetBarDelete:function () {
    },

    /**
    * 通过名字修改数据
    * @param {String} strName 线名
    * @param {Array} nData 要修改的数据
    */
    SetData:function (strName,nData) {
    },

    /**
    * 增加一条示例数据
    * @param {String} nName 示例数据名字
    * @param {Array} nData 示例数据内容
    */
    SetBarDataObj:function (nName,nData) {
    },

}