D3.jsはData Driven Documentの略です。
d3.jsのライブラリです。
<script src="https://d3js.org/d3.v4.min.js"></script>
要素を指定して、命令を書いていきます。
<script src="https://d3js.org/d3.v4.min.js"></script> <script> d3.select("body").selectAll("p").text("hello from d3"); </script>
繋げて書くこともできます。
var p = d3.select("body").selectAll("p"); p.text("hello from d3"); p.style("font-size","28px"); p.style("font-weight", "bold");