Skip to content

Instantly share code, notes, and snippets.

View gabrielflorit's full-sized avatar

Gabriel Florit gabrielflorit

View GitHub Profile
var width = $('svg').width();
var height = $('svg').height();
var svg = d3.select('svg');
svg
.attr('width', width)
.attr('height', height);
svg.selectAll('circle')
.data([18, 57, 112, 323])
@gabrielflorit
gabrielflorit / water.css
Created July 24, 2012 16:35 — forked from anonymous/water.css
blue bar chart
.chart rect {
stroke: white;
fill: steelblue;
}
var url = 'http://examples.oreilly.com/0636920025429/mikedewar-getting_started_with_d3-bdfc34e/visualisations/data/service_status.json';
// only retrieve above script once
$.ajaxSetup({
cache: true
});
var postData = {
'url': url
};