(
sel: d3.Selection<T, U, P, Q>,
)
| 606 | } |
| 607 | |
| 608 | transition<T extends d3.BaseType, U, P extends d3.BaseType, Q>( |
| 609 | sel: d3.Selection<T, U, P, Q>, |
| 610 | ): d3.Transition<T, U, P, Q> { |
| 611 | const { duration } = this.options; |
| 612 | return sel.transition().duration(duration); |
| 613 | } |
| 614 | |
| 615 | /** |
| 616 | * Fit the content to the viewport. |
no outgoing calls
no test coverage detected