getSmoothStepPath()
The getSmoothStepPath util returns everything you need to render a stepped path
between two nodes. The borderRadius property can be used to choose how rounded
the corners of those steps are.
import { Position, getSmoothStepPath } from '@xyflow/react';
const source = { x: 0, y: 20 };
const target = { x: 150, y: 100 };
const [path, labelX, labelY, offsetX, offsetY] = getSmoothStepPath({
sourceX: source.x,
sourceY: source.y,
sourcePosition: Position.Right,
targetX: target.x,
targetY: target.y,
targetPosition: Position.Left,
});
console.log(path); //=> "M0 20L20 20L 70,20Q 75,20 75,25L 75,95Q ..."
console.log(labelX, labelY); //=> 75, 60
console.log(offsetX, offsetY); //=> 75, 40Signature
Parameters:| Name | Type | Default |
|---|---|---|
[0].sourceX | numberThe | |
[0].sourceY | numberThe | |
[0].sourcePosition | PositionThe position of the source handle. | Position.Bottom |
[0].targetX | numberThe | |
[0].targetY | numberThe | |
[0].targetPosition | PositionThe position of the target handle. | Position.Top |
[0].borderRadius | number | 5 |
[0].centerX | number | |
[0].centerY | number | |
[0].offset | number | 20 |
[0].stepPosition | numberControls where the bend occurs along the path. 0 = at source, 1 = at target, 0.5 = midpoint | 0.5 |
[path: string, labelX: number, labelY: number, offsetX: number, offsetY: number]A path string you can use in an SVG, the labelX and labelY position (center of path)
and offsetX, offsetY between source handle and label.
path: the path to use in an SVG<path>element.labelX: thexposition you can use to render a label for this edge.labelY: theyposition you can use to render a label for this edge.offsetX: the absolute difference between the sourcexposition and thexposition of the middle of this path.offsetY: the absolute difference between the sourceyposition and theyposition of the middle of this path.
Notes
- This function returns a tuple (aka a fixed-size array) to make it easier to work with multiple edge paths at once.
- You can set the
borderRadiusproperty to0to get a step edge path.
Last updated on