View this code at http://livecoding.io/4612667
Created
January 23, 2013 20:24
created by http://livecoding.io
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
{ | |
"libraries": [ | |
"d3" | |
], | |
"mode": "javascript", | |
"layout": "fullscreen mode (horizontal)", | |
"resolution": "reset" | |
} |
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
#chart div { | |
background-color: black; | |
width: 50px; | |
height: 10px; | |
margin:5px | |
} | |
#chart div.bar { | |
background-color:red; | |
} | |
svg rect { | |
fill: steelblue; | |
stroke: black; | |
stroke-width: 1px | |
} |
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
<div id="chart"></div> | |
<svg></svg> |
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 data = [ 4, 8, 15, 16, 23, 42 ]; | |
//d3.select("#chart").selectAll("div") | |
// .data(data) | |
// .enter() | |
// .append("div") | |
// .attr("class", "bar") | |
// .style("width", function(d) { | |
// return d + "px" | |
// }); | |
/* | |
var svg = d3.select('svg').append('svg:g') | |
svg.selectAll("rect") | |
.data(data) | |
.enter().append("rect") | |
.attr({ | |
"x": function() { return 20 }, | |
"y": function(d,i) { return (i*26)+100 }, | |
"width": function(d) { return d*10 }, | |
"height": function() {return 20 } | |
}) | |
// .on('mousemove',mouse) | |
/* uncomment below to make the mouse do things on hover */ | |
/* | |
function mouse() { | |
// the next line gets the mouse position with d3, and logs it into | |
// an array with two elements: mousePosition[0] and mousePosition[1] | |
var mousePosition = d3.svg.mouse(this); | |
d3.select(this) | |
.attr('x',mousePosition[0]-20) | |
.attr('y',mousePosition[1]-10) | |
} | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment