Skip to content

Instantly share code, notes, and snippets.

@ptvans
Forked from anonymous/inlet.js
Created September 25, 2012 01:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ptvans/3779506 to your computer and use it in GitHub Desktop.
Save ptvans/3779506 to your computer and use it in GitHub Desktop.
just another inlet to tributary

No Previous Gist

{"editor_editor":{"coffee":false,"vim":false,"emacs":false,"width":718,"height":473,"hide":false},"endpoint":"tributary","editor_json0":{"vim":false,"emacs":false,"width":772,"height":646,"hide":true}}
[
{
"city": "Zurich",
"country": " Switzerland",
"lat": 47.3690239,
"lon": 8.5380326,
"days": 10,
"year": 2012,
"purpose": "travel"
},
{
"city": "London",
"country": " United Kingdom",
"lat": 51.5001524,
"lon": -0.1262362,
"days": 3,
"year": 2012,
"purpose": "airport"
},
{
"city": "Paris",
"country": " France",
"lat": 48.8566667,
"lon": 2.3509871,
"days": 1,
"year": 2012,
"purpose": "airport"
},
{
"city": "Amsterdam",
"country": " Netherlands",
"lat": 52.3738007,
"lon": 4.8909347,
"days": 1,
"year": 2012,
"purpose": "airport"
}
]
var x_scale = d3.scale.linear().domain([0,100]).range([0,500]);
//bar height
var h=30;
//x-origin
var o=20;
//y-origin
var l=30;
var color = d3.scale.category20();
var array = [16,25,9,12,38];
var group = g.append('g').attr('id','barsGroup')
var selection = group.selectAll('rect')
.data(array)
.enter()
.append('rect')
.attr('class','bars')
.attr('fill',function(d,i){return color(i)})
.attr('height',h)
.attr('width',function(d,i){
return x_scale(d);
})
.attr('x',function(d,i){
var cw = x_scale(d);
var temp = o;
o = o + cw
return temp;
})
.attr('y',l)
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment