Skip to content

Instantly share code, notes, and snippets.

@enjalot
Created March 8, 2013 22:51
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 enjalot/5120615 to your computer and use it in GitHub Desktop.
Save enjalot/5120615 to your computer and use it in GitHub Desktop.
example filter
{"description":"example filter","endpoint":"","display":"svg","public":true,"require":[],"fileconfigs":{"inlet.js":{"default":true,"vim":false,"emacs":false,"fontSize":12},"style.css":{"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":"period","bv":false,"nclones":15,"clone_opacity":0.4,"duration":3000,"ease":"linear","dt":0.01,"thumbnail":"http://i.imgur.com/lzyGi17.png"}
var data = [ 10, 20, 5, 30, 40];
var min = d3.min(data);
var svg = d3.select("svg");
svg.selectAll("rect.bar")
.data(data)
.enter()
.append("rect")
.classed("bar", true)
.attr({
x: function(d,i) { return 100 + i * 30 },
y: 100,
height: function(d, i) { return d * 2; },
width: 20
})
.filter(function(d) {
return d <= min
})
.classed("minimum", true)
.minimum {
fill: red
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment