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

    Interface NodeCreationOptions

    Node creation options with optional positioning

    interface NodeCreationOptions {
        x?: number;
        y?: number;
        position?: Position;
        fixed?: boolean;
        skipValidation?: boolean;
        skipRedraw?: boolean;
    }
    Index

    Properties

    x?: number

    Initial X position (optional)

    y?: number

    Initial Y position (optional)

    position?: Position

    Initial position (alternative to x/y)

    fixed?: boolean

    Whether the node should be fixed in place

    skipValidation?: boolean

    Skip validation (for internal use)

    skipRedraw?: boolean

    Skip redraw after creation