Created
July 17, 2014 14:55
-
-
Save stimms/0fa82ffafa9d799887a2 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
.on("click", function (d) { | |
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)); | |
$(this).attr("fill", "url(#rectpattern" + d.id + ")"); | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment