Skip to content

Instantly share code, notes, and snippets.

@stimms
Last active August 29, 2015 14:04
Show Gist options
  • Save stimms/89ba123b1a11a26d1ce5 to your computer and use it in GitHub Desktop.
Save stimms/89ba123b1a11a26d1ce5 to your computer and use it in GitHub Desktop.
var fillPattern = svg.append("pattern")
.attr("id", "rectpattern" + d.id)
.attr("patternUnits", "userSpaceOnUse")
.attr("width", 10)
.attr("height", 10)
.attr("patternTransform", "rotate(45)");
var fillPatternRectangle = fillPattern.append("rect")
.attr("height", 20)
.attr("width", 5)
.attr("fill", colorScale.getColor(d));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment