Skip to Content
πŸ“£ We just released Svelte Flow 1.0 Alpha β€” try it out and give us your feedback!
ReferenceTypesConnectionLineType

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