@joint/react
    Preparing search index...

    Interface TransformElementLayoutParams

    The element's measurement, passed to a TransformElementLayout callback. Carries the element's current x, y, and angle together with the freshly measured width and height, plus the underlying model and cell id.

    interface TransformElementLayoutParams {
        angle: number;
        height: number;
        id: ID;
        model: Element;
        width: number;
        x: number;
        y: number;
    }

    Hierarchy

    • Required<ElementLayout>
      • TransformElementLayoutParams
    Index

    Properties

    Properties

    angle: number
    height: number
    id: ID

    Id of the cell being measured.

    model: Element

    The JointJS dia.Element instance being measured.

    width: number
    x: number
    y: number