d3.selectorAll(selector)
Given the specified selector, returns a function which returns all descendants of this
element that match the specified selector. This method is used internally by selection.selectAll. For example, this:
1 | var div = selection.selectAll( "div" ); |
Is equivalent to:
1 | var div = selection.selectAll(d3.selectorAll( "div" )); |
Please login to continue.