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

XUIDentifierBar.prototype = {

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

    /**
    "xAxis2":{
      "title":"x轴2",
      "name":"xAxis2",
      "type":"PUIXAxisInterface",
      "index":1
    }*/

    /**
    "xAxis3":{
      "title":"x轴3",
      "name":"xAxis3",
      "type":"PUIXAxisInterface",
      "index":2
    }*/

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

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

    /**
    "yAxis3":{
      "title":"y轴3",
      "name":"yAxis3",
      "type":"PUIYAxisInterface",
      "index":2
    }*/

    /**
    "bar":{
      "title":"柱状图",
      "name":"bar",
      "type":"PUIBarInterface",
      "index":2
    }*/

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

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


    //接口
    /**
     * 设置数据
     * @param {Number} nValue 数据
     */
    SetData:function (nValue) {
    },

    /**
     * 获取数据
     * @return {Number} 数据
     */
    GetData:function () {
    },

    /**
     * 设置X轴文本
     * @param {String} strText X轴文本
     */
    SetXaxisText:function (strText) {
    },

    /**
     * 获取X轴文本
     * @return {String} X轴文本
     */
    GetXData:function () {
    },

    /**
     * 设置X轴文本大小
     * @param {Number} nSize 文本大小
     * @property {Number} XAxisTextSize 22
     */
    SetXAxisTextSize:function (nSize) {
    },

    /**
     * 设置最大值和最小值
     * @param {Number} nMin 最小值
     * @property {Number} nMax 最大值
     */
    SetMaxAndMind:function (nMin) {
    },

    /**
     * 设置蓝条大小
     * @param {Number} nWidth 宽度
     * @param {Number} nHeight 高度
     * @property {Collection} BlueLineSize [34,6]
     */
    SetBlueLineSize:function (nWidth,nHeight) {
    },

    /**
     * 设置蓝条分布距离
     * @param {Number} nMargin 距离
     * @property {Number} BlueLineMargin 75
     */
    SetBlueLineMargin:function (nMargin) {
    },

    /**
     * 设置蓝条距底部距离
     * @param {Number} nBottom 距下方距离
     * @property {Number} BlueLineBottom -10
     */
    SetBlueLineBottom:function (nBottom) {
    },

    /**
     * 设置背景条大小
     * @param {Number} nWidth 宽度
     * @param {Number} nHeight 高度
     * @property {Collection} BGLineSize [34,6]
     */
    SetBGLineSize:function (nWidth,nHeight) {
    },

    /**
     * 设置背景条分布距离
     * @param {Number} nMargin 距离
     * @property {Number} BGLineMargin 75
     */
    SetBGLineMargin:function (nMargin) {
    },

    /**
     * 设置背景条距底部距离
     * @param {Number} nBottom 距下方距离
     * @property {Number} BGLineBottom -10
     */
    SetBGLineBottom:function (nBottom) {
    },

}