block by ramnathv 4fef7f8784808abda51e

4fef7f8784808abda51e

Full Screen

This is an alpha version of a plugin to create interactive statemaps.

mystatemap = statemap()
  .x("state")
  .y("share")
  .facet("description")
  .colors(colorbrewer.Greens[5])

d3.select("#statebin")
  .classed("statebin", true)
  .datum(x.data)
  .call(mystatemap)

index.html