| 1234567891011121314151617 |
- import { minBy } from '@antv/util';
- function targetDepth(d) {
- return d.target.depth;
- }
- export function left(node) {
- return node.depth;
- }
- export function right(node, n) {
- return n - 1 - node.height;
- }
- export function justify(node, n) {
- return node.sourceLinks.length ? node.depth : n - 1;
- }
- export function center(node) {
- return node.targetLinks.length ? node.depth : node.sourceLinks.length ? minBy(node.sourceLinks, targetDepth) - 1 : 0;
- }
- //# sourceMappingURL=align.js.map
|