We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PR #27 will result in the following changes in the rest of the repo
include in css file: svg { border: 5px solid red; }
change in js files:
lesson notes: write up and explain solution for automatic checkboxes (optional)
cc @twitwi
The text was updated successfully, but these errors were encountered:
this might help
//var region_names = ["Sub-Saharan Africa", "South Asia", "Middle East & North Africa", "America", "East Asia & Pacific", "Europe & Central Asia"]; var region_names = nations.map(function(d) { return d.region; }); region_names = d3.set(region_names).values(); for (i in region_names) { var lab = d3.select("body").append("label"); lab .append("input") .attr("type", "checkbox") .attr("class", "region_cb") .attr("value", region_names[i]); lab.append("span").text(region_names[i]); lab.append("br"); //d3.select("body").append("span").html(region_names[i]); }
Sorry, something went wrong.
No branches or pull requests
PR #27 will result in the following changes in the rest of the repo
include in css file:
svg {
border: 5px solid red;
}
change in js files:
lesson notes:
write up and explain solution for automatic checkboxes (optional)
cc @twitwi
The text was updated successfully, but these errors were encountered: