Skip to Content

EdgeProps

GitHub 上的源代码

¥Source on GitHub

实现自定义边时,它被封装在一个启用一些基本功能的组件中。你的自定义边缘组件接收以下属性:

¥When you implement a custom edge it is wrapped in a component that enables some basic functionality. Your custom edge component receives the following props:

export type EdgeProps<EdgeType extends Edge = Edge> = { id: string; animated: boolean; data: EdgeType['data']; style: React.CSSProperties; selected: boolean; source: string; target: string; sourceHandleId?: string | null; targetHandleId?: string | null; interactionWidth: number; sourceX: number; sourceY: number; targetX: number; targetY: number; sourcePosition: Position; targetPosition: Position; label?: string | React.ReactNode; labelStyle?: React.CSSProperties; labelShowBg?: boolean; labelBgStyle?: CSSProperties; labelBgPadding?: [number, number]; labelBgBorderRadius?: number; markerStart?: string; markerEnd?: string; pathOptions?: any; };

字段

¥Fields

#id
string
#animated?
boolean
#data
T
#style
#selected
boolean
#source
string
#target
string
#sourceHandleId?
string | null
#targetHandleId?
string | null
#interactionWidth
number
#sourceX
number
#sourceY
number
#targetX
number
#targetY
number
#sourcePosition
#targetPosition
#label?
string | React.ReactNode
#labelStyle?
#labelShowBg?
boolean
#labelBgStyle?
#labelBgPadding?
[number, number]
#labelBgBorderRadius?
number
#markerStart?
string
#markerEnd?
string
#pathOptions?
any