所以我试图通过我的选择中的值加载不同的数据,我将离开 choropleth 示例,我有以下内容
d3.json("data1.json", function (json) {
data = json;
counties.selectAll("path")
.attr("class", quantize);
});
d3.select("select").on("change", function () {
//get value of select and replace data1.json above
d3.selectAll("svg").json("path", this.value);
});
但是,我就是无法加载不同的值。