Interface LinkArrowPoint

Editable point of connector/arrow/line

interface LinkArrowPoint {
    id: 0 | ObjectId;
    x: number;
    y: number;
    abs: {
        x: number;
        y: number;
    };
}

Hierarchy (view full)

Properties

Properties

id: 0 | ObjectId

Identifier of target item

x: number

x coordinate in percents relative to target item

y: number

y coordinate in percents relative to target item

abs: {
    x: number;
    y: number;
}

Absolute coordinates

Type declaration

  • x: number

    x coordinate relative to the left-top corner of space

  • y: number

    y coordinate relative to the left-top corner of space