MAIDR Documentation - v4.4.0
    Preparing search index...

    Interface NetworkPoint

    One link of a network or node-link diagram.

    Undirected: a link between two nodes is a fact about the pair, not a direction, and the nodes are derived from the links exactly as a FlowPoint's are.

    There is deliberately no position here. Where a force-directed node lands is a fact about the solver's seed rather than about the data, so announcing it would be inventing a finding -- and a field that existed would eventually be announced.

    { source: 'Ada', target: 'Grace' }
    
    interface NetworkPoint {
        source: string | number;
        target: string | number;
    }
    Index

    Properties

    Properties

    source: string | number

    One end of the link.

    target: string | number

    The other end.