Graphora API
    Preparing search index...

    Interface RenderEdge<EdgeData>

    interface RenderEdge<EdgeData = unknown> {
        attributes: Readonly<GraphAttributes>;
        data?: EdgeData;
        directed: boolean;
        id: GraphId;
        key: string;
        label?: string;
        route?: readonly WorldPoint[];
        sourceId: GraphId;
        sourceKey: string;
        sourcePoint: WorldPoint;
        style: ResolvedEdgeStyle;
        targetId: GraphId;
        targetKey: string;
        targetPoint: WorldPoint;
    }

    Type Parameters

    • EdgeData = unknown
    Index
    attributes: Readonly<GraphAttributes>
    data?: EdgeData
    directed: boolean
    key: string
    label?: string
    route?: readonly WorldPoint[]

    Optional world-space center-anchored polyline from a layout stage.

    sourceId: GraphId
    sourceKey: string
    sourcePoint: WorldPoint
    targetId: GraphId
    targetKey: string
    targetPoint: WorldPoint