Skip to content

Instantly share code, notes, and snippets.

View paulinm's full-sized avatar

Matthew Paulini paulinm

View GitHub Profile
@tomerd
tomerd / gauge.js
Last active April 21, 2024 21:08
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;