SVG Graph Network API Documentation - v0.2.0
    Preparing search index...

    Interface GraphData

    Complete graph data structure

    interface GraphData {
        nodes: NodeData[];
        links: LinkData[];
        edges?: EdgeData[];
    }
    Index

    Properties

    Properties

    nodes: NodeData[]

    Array of node data

    links: LinkData[]

    Array of link data

    edges?: EdgeData[]

    Array of edge data (for backward compatibility)