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

XUILadderControlBar.prototype = {

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

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

    /**
    "pictorialBar":{
            "title":"象形柱状图",
            "name":"pictorialBar",
            "type":"PUIPictorialBarInterface",
            "index":0
        }*/


    //接口
    /**
    * 设置柱图数据
    * @param {Array} nDateValue 柱图数据
    */
    SetSeriesDateValue:function (nDateValue) {
    },

    /**
    * 清除一个柱子数据
    * @param {Number} nIndex 下标
    */
    ClearSeriesDate:function (nIndex) {
    },

}