* Execute in scope d3 selectAll using the given selector and return d3 selection result. * * This function is **not chainable** since it does not return a chart instance; however the d3 * selection result can be chained to d3 function calls. * @see {@link https://github.com/d3/d3
(sel)
| 410 | * @returns {d3.selection} |
| 411 | */ |
| 412 | selectAll (sel) { |
| 413 | return this._root ? this._root.selectAll(sel) : null; |
| 414 | } |
| 415 | |
| 416 | /** |
| 417 | * Set the root SVGElement to either be an existing chart's root; or any valid [d3 single |
no outgoing calls
no test coverage detected