Interface HierarchyPointLink<Datum>

interface HierarchyPointLink {
    source: HierarchyPointNode<Datum>;
    target: HierarchyPointNode<Datum>;
}

Type Parameters

  • Datum

Properties

Properties

source: HierarchyPointNode<Datum>

The source of the link.

target: HierarchyPointNode<Datum>

The target of the link.