html D3byEX 9.2:区域生成器(适用于D3.js v4)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html D3byEX 9.2:区域生成器(适用于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>
以上是关于html D3byEX 9.2:区域生成器(适用于D3.js v4)的主要内容,如果未能解决你的问题,请参考以下文章
html D3byEX 4.8:左轴(适用于D3.js v4)
html D3byEX 4.6:顶轴(适用于D3.js v4)
html D3byEX 4.4:底轴(适用于D3.js v4)
html D3byEX 9.10:符号(适用于D3.js v4)
html D3byEX 7.4:链式转换(适用于D3.js v4)
html D3byEX 6.1:散点图(适用于D3.js v4)