Foblex Flow
Introduction
Overview
Nodes
Custom Nodes
Drag Handle
Node Selection
Resize Handle
Rotate Handle
Grouping
Drag to Group
Connectors
Node as Connector
Connector Inside Node
Connector Outlet
Limiting Connections
Connection Rules
Connectable Side
Updated
Connections
Drag to Connect
Drag to Reassign
Create Node on Connection Drop
Remove Connection on Drop
Assign Node to Connection on Drop
Auto Snap
Connection Types (Straight, Segment, Bezier, Adaptive Curve)
Custom Connection Type
Connection Behaviours
Connection Markers
Connection Content
New
Connection Waypoints
New
Custom Connections
Connection Connectable Side
New
Extensions
Add Node from Palette
Selection Area
Help in Positioning (Legacy)
Deprecated
Magnetic Lines
New
Magnetic Rects
New
Grid System
Minimap
Zoom
Updated
Background
Updated
Advanced
Large Scene Performance
Updated
Connection Redraw Performance
Updated
Cut/Copy/Paste
New
Undo/Redo
Undo/Redo V2
New
Dagre Layout (Directed Graph)
ELKJS Layout (Directed Graph)
Drag Start/End Events
Custom Event Triggers
Reference Apps
AI Low-Code Platform
New
DB Management
UML Diagram
Tournament Bracket
Foblex Flow

Connection Waypoints

Description

Manually shape connection routes by adding interactive waypoints between nodes. Use this when users need cleaner edge routing without giving up control of the underlying waypoint data in your application state.

Example

[component.html] <<< https://raw.githubusercontent.com/Foblex/f-flow/main/projects/f-examples/connections/connection-waypoints/connection-waypoints.html [component.ts] <<< https://raw.githubusercontent.com/Foblex/f-flow/main/projects/f-examples/connections/connection-waypoints/connection-waypoints.ts [component.scss] <<< https://raw.githubusercontent.com/Foblex/f-flow/main/projects/f-examples/connections/connection-waypoints/connection-waypoints.scss [common.scss] <<< https://raw.githubusercontent.com/Foblex/f-flow/main/projects/f-examples/_flow-common.scss

What you can do

  • See waypoint candidates generated along each connection segment.
  • Add a waypoint to make the route explicit.
  • Move existing waypoints to reshape the connection in real time.
  • Bind [(waypoints)] to your own state and react through (fConnectionWaypointsChanged).

Key API

Place <f-connection-waypoints> inside <f-connection> and configure:

  • [(waypoints)] for two-way binding with your waypoint array.
  • radius for the visual size of candidates and active waypoints.

Interaction model

  • Drag a green candidate point onto the connection to add a waypoint.
  • Drag a blue waypoint to move it.
  • Right-click a waypoint to remove it.
  • Use the toolbar toggles to show/hide waypoints or disable interaction.

The feature stays data-driven: Foblex Flow handles interaction, but the waypoint array still belongs to your app.

Edit this page on GitHub