単一のjson.iを使用して複数のグラフを生成する方法はありますか?1つのデータセットのみを使用できます。すべてのPタグで1つのグラフしか生成できませんが、データセットごとに1つのすべてのPタグで異なるグラフを生成したいと思います。
HTML
<p class="graph1"></p>
<p class="graph1"></p>
<p class="graph1"></p>
<p class="graph1"></p>
<p class="graph1"></p>
データセット
var dataset=[[2100, 2000, 3200],[2200, 3000, 3200],[1200, 1000, 5200],[1200, 2000, 3200],[1200, 3000, 3500]];
D3 Javascript
svg = d3.selectAll('.graph1').append("svg").attr("width",w).attr("height",h);
var rect1 = svg.append("rect").attr("x",0).attr("y",3*h/4).attr("width",w).attr("height",rect_1_h)
.style("fill",rect_1_color);