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

XUIProductionStatistics.prototype = {

    //接口
    /**
     * 设置数据最大值和当前数值
     * @param {Number} nNum 数值
     * @param {Number} maxNum 最大值
     * @property {Collection} maxNum [1000,1200]
     */
    SetData:function (nNum,maxNum) {
    },

    /**
     * 设置切换背景图
     * @param {ImageProp} strimages 图片路径
     * @property {ImageProp} strimages "common_2dChart/XUIProductionStatistics/img/2017scjyqktj_kg_shuju2.png"
     */
    SetImg:function (strimages) {
    },

    /**
     * 设置数字颜色
     * @param {String} strNumberColor 数字颜色
     * @property {Color} NumberColor "oxffF9F33D"
     */
    SetNumberColor:function (strNumberColor) {
    },

    /**
     * 设置数字大小
     * @param {String} strNumberSize 数字大小
     * @property {String} strNumberSize "22px"
     */
    SetNumberSize:function (strNumberSize) {
    },

    /**
     * 设置统计图原始宽度
     * @param {String} strImgWidth 统计图原始宽度
     * @property {String} strImgWidth "70px"
     */
    SetImgWidth:function (strImgWidth) {
    },

    /**
     * 设置统计图原始高度
     * @param {String} strImgHeight 统计图原始高度
     * @property {String} strImgHeight "160px"
     */
    SetImgHeight:function (strImgHeight) {
    },

}