@jsfkit/types
    Preparing search index...

    Type Alias GraphicConnectionShape

    Connection shape (connector).

    Represents a connector or line shape that connects two other shapes, typically used for creating diagrams, flowcharts, and organizational charts.

    type GraphicConnectionShape = {
        id: string;
        name: string;
        shape?: Shape;
        text?: TextBody;
        type: "connectionShape";
        xfrm?: Xfrm;
    }
    Index

    Properties

    id: string

    Unique identifier for this connection shape.

    name: string

    Display name of the connection shape.

    shape?: Shape

    Visual styling properties (line style, color, effects, etc.).

    text?: TextBody

    Optional text content displayed on or near the connector.

    type: "connectionShape"

    Type discriminator for connection shapes.

    xfrm?: Xfrm

    2D transformation (position, rotation, scale).