function Graph() { 
    
this.setData = function () {
       
};    
    
this.renderBar = function (target) {
       
       var TEMP = $().sort("totalAmount", "desc");
       
       
      target.html("graph here");
       
};

this.renderLine = function () {
       
};

}    


