Skip to content

Instantly share code, notes, and snippets.

@d3byex
Created November 23, 2015 07:37
Show Gist options
  • Save d3byex/31ec67b16f448537f97e to your computer and use it in GitHub Desktop.
Save d3byex/31ec67b16f448537f97e to your computer and use it in GitHub Desktop.
D3byEX 9.10: Symbols
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="D3byEX 9.10" />
<meta charset="utf-8">
</head>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script>
var svg = d3.select('body')
.append('svg')
.attr({
width: 500,
height: 250
});
svg.selectAll('path')
.data(d3.svg.symbolTypes)
.enter()
.append('path')
.attr({
d: d3.svg.symbol().type(function (d) { return d; }),
transform: function (d, i) {
return 'translate(' + (i * 20 + 10) + ',10)';
}
});
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment