@maxgraph/core
    Preparing search index...

    Interface EdgeParameters

    interface EdgeParameters {
        id?: string;
        parent?: null | Cell;
        source?: null | Cell;
        style?: CellStyle;
        target?: null | Cell;
        value?: EdgeParametersValue;
    }
    Index

    Properties

    id?: string

    Optional string that defines the id of the new edge. If not set, the id is auto-generated when creating the vertex.

    parent?: null | Cell

    The parent of the new edge. If not set, use the default parent.

    source?: null | Cell

    The Cell that defines the source of the edge.

    style?: CellStyle
    target?: null | Cell

    The Cell that defines the target of the edge.

    Object to be used as the user object which is generally used to display the label of the vertex. The default implementation handles string object.