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

    Interface DataMergeOptions

    Data merging options

    interface DataMergeOptions {
        nodeConflictResolution?: "preserve" | "update" | "error";
        edgeConflictResolution?: "preserve" | "update" | "error";
        skipRedraw?: boolean;
        animate?: boolean;
        duration?: number;
    }
    Index

    Properties

    nodeConflictResolution?: "preserve" | "update" | "error"

    How to handle conflicts for existing nodes

    edgeConflictResolution?: "preserve" | "update" | "error"

    How to handle conflicts for existing edges

    skipRedraw?: boolean

    Skip redraw until merge complete

    animate?: boolean

    Animate the merge operation

    duration?: number

    Animation duration in milliseconds