@joint/react
    Preparing search index...

    Interface GraphElement

    interface GraphElement {
        attrs?: unknown;
        height?: number;
        id: ID;
        markup?: string | MarkupJSON;
        ports?: Ports;
        type?: string;
        width?: number;
        x?: number;
        y?: number;
        [key: string]: any;
        [key: number]: any;
    }

    Hierarchy

    • JointAttributes
      • GraphElement

    Indexable

    • [key: string]: any
    • [key: number]: any
    Index

    Properties

    attrs?: unknown

    Attributes of the element.

    height?: number

    Optional height of the element.

    id: ID

    Unique identifier of the element.

    markup?: string | MarkupJSON
    ports?: Ports

    Ports of the element.

    type?: string

    Optional element type.

    REACT_TYPE

    width?: number

    Optional width of the element.

    x?: number

    X position of the element.

    y?: number

    Y position of the element.