Skip to content

Instantly share code, notes, and snippets.

@mbostock
Last active June 26, 2016 08:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mbostock/1067616 to your computer and use it in GitHub Desktop.
Save mbostock/1067616 to your computer and use it in GitHub Desktop.
Venn Diagram with Opacity
license: gpl-3.0
<!DOCTYPE html>
<meta charset="utf-8">
<body>
<script src="//d3js.org/d3.v3.min.js"></script>
<script>
var width = 960,
height = 500;
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
svg.append("circle")
.attr("cx", 350)
.attr("cy", 200)
.attr("r", 200)
.style("fill", "brown")
.style("fill-opacity", ".5");
svg.append("circle")
.attr("cx", 550)
.attr("cy", 200)
.attr("r", 200)
.style("fill", "steelblue")
.style("fill-opacity", ".5");
svg.append("circle")
.attr("cx", 450)
.attr("cy", 300)
.attr("r", 200)
.style("fill", "green")
.style("fill-opacity", ".5");
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment