@joint/react
    Preparing search index...

    Interface LinkMarkerRecord

    A link endpoint marker, an SVG complex-marker JSON plus an optional length. Attach one to a LinkStyle's sourceMarker / targetMarker. The built-in linkMarker* factories return this shape, or you can hand-write one.

    interface LinkMarkerRecord {
        attrs?: NativeSVGAttributes;
        id?: string;
        length?: number;
        markup: string | MarkupJSON;
    }

    Hierarchy

    • SVGComplexMarkerJSON
      • LinkMarkerRecord
    Index

    Properties

    attrs?: NativeSVGAttributes
    id?: string
    length?: number

    The marker's visual length along the link, in px. Connection-point math pulls the line tip back by this much so the line meets the marker instead of poking through it. Omit it to apply no offset (treated as 0).

    markup: string | MarkupJSON