Skip to content

Instantly share code, notes, and snippets.

@tomerd
tomerd / gauge.js
Last active August 6, 2022 11:53
google style gauges using javascript d3.js
function Gauge(placeholderName, configuration)
{
this.placeholderName = placeholderName;
var self = this; // for internal d3 functions
this.configure = function(configuration)
{
this.config = configuration;