interface SankeyData {
    arrangement:
        | "fixed"
        | "snap"
        | "perpendicular"
        | "freeform";
    customdata: Datum[];
    domain: Partial<SankeyDomain>;
    hoverinfo: string;
    hoverlabel: Partial<SankeyHoverLabel>;
    ids: string[];
    legend: string;
    legendgrouptitle: Partial<SankeyDataTitle>;
    legendrank: number;
    legendwidth: number;
    link: Partial<SankeyLink>;
    meta: string | number;
    name: string;
    node: Partial<SankeyNode>;
    orientation: SankeyOrientation;
    selectpoints: string | number;
    textfont: Partial<SankeyFont>;
    type: "sankey";
    uirevision: string | number;
    valueformat: string;
    valuesuffix: string;
    visible: boolean | "legendonly";
}

Properties

arrangement:
    | "fixed"
    | "snap"
    | "perpendicular"
    | "freeform"
customdata: Datum[]
hoverinfo: string
ids: string[]
legend: string
legendgrouptitle: Partial<SankeyDataTitle>
legendrank: number
legendwidth: number
meta: string | number
name: string
orientation: SankeyOrientation
selectpoints: string | number
textfont: Partial<SankeyFont>
type
uirevision: string | number
valueformat: string
valuesuffix: string
visible: boolean | "legendonly"