Reference
Edge

Edge

Source on GitHub (opens in a new tab)

Where a Connection is the minimal description of an edge between two nodes, an Edge is the complete description with everything React Flow needs to know in order to render it.

export type Edge<T> = DefaultEdge<T> | SmoothStepEdge<T> | BezierEdge<T>;

Variants

Edge

Source on GitHub (opens in a new tab)

#id
string
#type
string
#style?
#className?
string
#source
string
#target
string
#sourceNode?
#targetNode?
#sourceHandle
string | null
#targetHandle
string | null
#data
T
#hidden
boolean
#animated
boolean
#selected
boolean
#selectable
boolean
#deletable
boolean
#focusable
boolean
#reconnectable?
boolean | "source" | "target"
Determines whether the edge can be updated by dragging the source or target to a new node. This property will override the default set by the edgesReconnectable prop on the <ReactFlow /> component.
#markerStart
string | EdgeMarker
#markerEnd
string | EdgeMarker
#zIndex?
number
#interactionWidth
number
ReactFlow renders an invisible path around each edge to make them easier to click or tap on. This property sets the width of that invisible path.
#ariaLabel
string
#label?
string | React.ReactNode
#labelStyle?
#labelShowBg?
boolean
#labelBgStyle?
#labelBgPadding?
[number, number]
#labelBgBorderRadius?
number

SmoothStepEdge

Source on GitHub (opens in a new tab)

The SmoothStepEdge variant has all the same fields as an Edge, but it also has the following additional fields:

#type
"smoothstep"
#pathOptions?
object
#pathOptions.offset?
number
#pathOptions.borderRadius?
number

BezierEdge

Source on GitHub (opens in a new tab)

The BezierEdge variant has all the same fields as an Edge, but it also has the following additional fields:

#type
"default"
#pathOptions?
object
#pathOptions.curvature?
number

Default edge types

You can create any of React Flow's default edges by setting the type property to one of the following values:

  • "default"
  • "straight"
  • "step"
  • "smoothstep"
  • "simplebezier"

If you don't set the type property at all, React Flow will fallback to the "default" bezier curve edge type.

These default edges are available even if you set the edgeTypes prop to something else, unless you override any of these keys directly.