Skip to Content
📣 We just released Svelte Flow 1.0 Alpha — try it out and give us your feedback!

ConnectionLineType

With the connectionLineType prop on your <SvelteFlow /> component, you can configure the type of the connection line. Svelte Flow comes with built-in support for the following types: ‘default’ (bezier), ‘straight’, ‘step’, ‘smoothstep’ and ‘simplebezier’.

export enum ConnectionLineType { Bezier = 'default', Straight = 'straight', Step = 'step', SmoothStep = 'smoothstep', SimpleBezier = 'simplebezier', }
Last updated on