No Previous Gist
-
-
Save ptvans/3779506 to your computer and use it in GitHub Desktop.
just another inlet to tributary
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"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}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"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" | |
} | |
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment