Skip to content

Instantly share code, notes, and snippets.

View michelmattos's full-sized avatar
:octocat:

Michel Mattos michelmattos

:octocat:
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;