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

XUIFaceRecognition.prototype = {

    //组件
    /**
    "bar0":{
            "title":"柱状图0",
            "name":"bar0",
            "type":"PUIBarInterface",
            "index":0
        }*/

    /**
    "bar1":{
            "title":"柱状图1",
            "name":"bar1",
            "type":"PUIBarInterface",
            "index":1
        }*/

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

    /**
    "bar3":{
            "title":"柱状图3",
            "name":"bar3",
            "type":"PUIBarInterface",
            "index":3
        }*/


    //接口
    /**
    * 设置纹理图案
    * @param {String} strName "yellow/green/blue"
    */
    SetTexturePattern:function (strName) {
    },

    /**
    * 设置左柱状图数据
    * @param {Number} nValue 左数据
    * @property {Number} LeftBarData 18
    */
    SetLeftBarData:function (nValue) {
    },

    /**
    * 获取左柱状图数据
    * @return {Number} 左柱状图数据
    */
    GetLeftBarData:function () {
    },

    /**
    * 设置右柱状图数据
    * @param {Number} nValue 右数据
    * @property {Number} RightBarData 5
    */
    SetRightBarData:function (nValue) {
    },

    /**
    * 获取右柱状图数据
    * @return {Number} 
    */
    GetRightBarData:function () {
    },

    /**
    * 设置左背景柱数据
    * @param {Number} nValue 左背景柱数据
    * @property {Number} LeftBgBar 30
    */
    SetLeftBgBar:function (nValue) {
    },

    /**
    * 设置右背景柱数据
    * @param {Number} nValue 右背景柱数据
    * @property {Number} RightBgBar 30
    */
    SetRightBgBar:function (nValue) {
    },

}