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

    Interface PlotlySankeyLink

    One flow of a drawn sankey.

    The ends start out as indices, exactly as the trace authored them, and the layout pass REPLACES them with the node objects themselves — so a link read off a rendered chart carries objects and one read before layout carries numbers. Both are admitted here because both are reachable.

    interface PlotlySankeyLink {
        source?: number | PlotlySankeyNode;
        target?: number | PlotlySankeyNode;
        value?: number;
    }
    Index

    Properties

    source?: number | PlotlySankeyNode
    target?: number | PlotlySankeyNode
    value?: number