データのバインディング

  • d3.select("body").selectAll("p")
    • .data(dataset)
    • .enter()
    • .append("p")
    • .text("新しいテキスト");