Skip to Content
参考手册类型

ConnectionLineType

GitHub 上的源代码

¥Source on GitHub

如果你在 <ReactFlow /> 组件上设置 connectionLineType 属性,它将决定创建新边时渲染的连接线样式。

¥If you set the connectionLineType prop on your <ReactFlow /> component, it will dictate the style of connection line rendered when creating new edges.

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

注释

¥Notes

  • 如果你选择渲染自定义连接线组件,则该值将作为其 ConnectionLineComponentProps 的一部分传递给你的组件。

    ¥If you choose to render a custom connection line component, this value will be passed to your component as part of its ConnectionLineComponentProps.