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

XUIPictograph.prototype = {

    //组件
    /**
    "pictorialBar1":{
           "title":"象形柱图1",
           "name":"pictorialBar1",
           "type":"PUIPictorialBarInterface",
           "index":0
        }*/

    /**
    "pictorialBar2":{
           "title":"象形柱图2",
           "name":"pictorialBar2",
           "type":"PUIPictorialBarInterface",
           "index":1
        }*/

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

    /**
    "yAxis2":{
           "title":"y轴2",
           "name":"yAxis2",
           "type":"PUIYAxisInterface",
           "index":1
        }*/

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


    //接口
    /**
    * 通过x轴文本设置选中项
    * @param {String} strXLabel x轴文本
    */
    SetSelectedByXlabel:function (strXLabel) {
    },

    /**
    * 通过序号设置选中项
    * @param {Number} nIndex x轴文本
    */
    SetSelectedByIndex:function (nIndex) {
    },

    /**
    * 设置数据
    * @param {Array} arrData
    * @property {Array} Data [490, 780, 600, 890, 900, 950,900, 1000,820, 1100, 1200, 1300]
    */
    SetData:function (arrData) {
    },

    /**
    * 设置x轴文本
    */
    SetClearData:function () {
    },

    /**
    * 根据x轴文本删除数据
    * @param {string} straxisdata x轴文本
    */
    SetspliceData:function (straxisdata) {
    },

    /**
    * 增加一个数据
    * @param {Number} newData 
    * @param {string} straxisdata
    */
    AddNewData:function (newData,straxisdata) {
    },

    /**
    * 根据x轴文本获得一个数据
    * @param {string} straxisdata
    */
    GetData:function (straxisdata) {
    },

}