This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Gauge(placeholderName, configuration) | |
{ | |
this.placeholderName = placeholderName; | |
var minValue = null; | |
var maxValue = null; | |
var avgValue = null; | |
var avgCounter = 0; | |
var self = this; // for internal d3 functions |