d3.selection()

d3.selection()

Selects the root element, document.documentElement. This function can also be used to test for selections (instanceof d3.selection) or to extend the selection prototype. For example, to add a method to check checkboxes:

1
2
3
4
5
d3.selection.prototype.checked = function(value) {
  return arguments.length < 1
      ? this.property("checked")
      : this.property("checked", !!value);
};

And then to use:

1
d3.selectAll("input[type=checkbox]").checked(true);
doc_D3_Js
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.