* Execute d3 single selection in the chart's scope using the given selector and return the d3 * selection. * * 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 h
(sel)
| 394 | * @returns {d3.selection} |
| 395 | */ |
| 396 | select (sel) { |
| 397 | return this._root.select(sel); |
| 398 | } |
| 399 | |
| 400 | /** |
| 401 | * Execute in scope d3 selectAll using the given selector and return d3 selection result. |
no outgoing calls
no test coverage detected