Skip to content

Instantly share code, notes, and snippets.

@trinary
Created October 22, 2013 22:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save trinary/7109378 to your computer and use it in GitHub Desktop.
Save trinary/7109378 to your computer and use it in GitHub Desktop.
naive y axis example
{"description":"naive y axis example","endpoint":"","display":"svg","public":true,"require":[],"fileconfigs":{"inlet.js":{"default":true,"vim":false,"emacs":false,"fontSize":12},"_.md":{"default":true,"vim":false,"emacs":false,"fontSize":12},"config.json":{"default":true,"vim":false,"emacs":false,"fontSize":12}},"fullscreen":false,"play":false,"loop":false,"restart":false,"autoinit":true,"pause":true,"loop_type":"pingpong","bv":false,"nclones":15,"clone_opacity":0.4,"duration":3000,"ease":"linear","dt":0.01,"thumbnail":"http://i.imgur.com/mZNiLDd.png"}
var data = [
{value: 7},
{value: 20},
{value: 33},
{value: 9},
{value: 1},
{value: 44},
{value: 15},
{value: 26}
];
var svg = d3.select("svg");
var bars = svg.selectAll(".bars")
.data(data);
// !!! Uncomment the stuff below to see some bars!
/* bars.enter()
.append("rect")
.classed("bars",true)
.attr({
x: function(d,i) { return 20 + (i * 40)},
y: 100,
width: 20,
height: function(d,i) { return d.value * 5;}
})
.style("fill","grey")
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment