ConnectionLineType
使用 connectionLineType
属性在你 <SvelteFlow />
组件上,你可以配置连接线的类型。 Svelte Flow 内置支持以下类型:‘default’ (bezier),‘straight’,‘step’,‘smoothstep’ 和 ‘simplebezier’。
export enum ConnectionLineType {
Bezier = 'default',
Straight = 'straight',
Step = 'step',
SmoothStep = 'smoothstep',
SimpleBezier = 'simplebezier',
}