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