Skip to content

Instantly share code, notes, and snippets.

@nick3499
Forked from d3byex/index.html
Last active March 9, 2017 02:52
Show Gist options
  • Save nick3499/b09b15f62b5d9c3d0a3e38c377a0b70e to your computer and use it in GitHub Desktop.
Save nick3499/b09b15f62b5d9c3d0a3e38c377a0b70e to your computer and use it in GitHub Desktop.
D3byEX 9.2: Area Generator (Adapted to D3.js v4)
<!DOCTYPE html>
<html>
<meta charset=utf-8>
<head>
<meta name="description" content="D3.js v4, line graph area" />
</head>
<body>
<script src="http://d3js.org/d3.v4.min.js"></script>
<script src="https://d3js.org/d3-selection-multi.v1.min.js"></script>
<script>
svg = d3.select('body')
.append('svg')
.attrs({ width: 500, height: 250 });
var data = d3.range(100)
.map(function (i) { return Math.random() * 30; })
.map(function (d, i) { return { X: i * 10, Y: d } });
var generator = d3.area()
.y0(100)
.x(function (d) { return d.X; })
.y1(function (d) { return d.Y; });
svg.append('path')
.datum(data)
.attrs({ d: generator, fill: 'yellow', stroke: 'black' });
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment