(d: NodeData)
| 389 | } |
| 390 | |
| 391 | private dragended(d: NodeData) { |
| 392 | if (this.model.static) { |
| 393 | return; |
| 394 | } |
| 395 | if (!d3GetEvent().active) { |
| 396 | this.force_layout.alphaTarget(0.4); |
| 397 | } |
| 398 | d.fx = null; |
| 399 | d.fy = null; |
| 400 | } |
| 401 | |
| 402 | private colorScaleUpdated() { |
| 403 | this.nodes |
nothing calls this directly
no test coverage detected