Interface HierarchyLink<Datum>

interface HierarchyLink {
    source: HierarchyNode<Datum>;
    target: HierarchyNode<Datum>;
}

Type Parameters

  • Datum

Properties

Properties

source: HierarchyNode<Datum>

The source of the link.

target: HierarchyNode<Datum>

The target of the link.