Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jsplumb-demonstrations/segmented-connectors
Examples of the segmented connector and how to edit paths with segmented connectors
https://github.com/jsplumb-demonstrations/segmented-connectors
diagramming diagrams javascript jointjs jsplumb svg visualization
Last synced: about 21 hours ago
JSON representation
Examples of the segmented connector and how to edit paths with segmented connectors
- Host: GitHub
- URL: https://github.com/jsplumb-demonstrations/segmented-connectors
- Owner: jsplumb-demonstrations
- Created: 2024-04-01T23:19:47.000Z (8 months ago)
- Default Branch: 6.x
- Last Pushed: 2024-09-16T04:05:38.000Z (2 months ago)
- Last Synced: 2024-09-16T05:24:27.798Z (2 months ago)
- Topics: diagramming, diagrams, javascript, jointjs, jsplumb, svg, visualization
- Language: JavaScript
- Homepage: https://jsplumbtoolkit.com/demonstrations/segmented-connectors
- Size: 15.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Segmented connectors
### What are segmented connectors?
This connector type consists of a set of straight line segments, with the option to smooth the segments into a series of Bezier curves. This type of connector is useful for a wide range of different UIs - flowcharts, process flows, CAD applications - anything where the user wants fine grained control of the path that the edges follow.
Editing pathsThe editor for this connector type supports three operations:
- Segment end points can be dragged around
- The scissors icon cuts a segment into two.
- The trashcan icon deletes a segment. This icon is not shown when the connector has only one segment.### Path smoothing
Segmented connectors can be rendered with "smoothing" enabled, in which mode the path is represented as a series of Bezier splines.
Smoothing can be switched on via the `smooth` flag in the connector options. In this demonstration, you can toggle smoothing via the Toggle smoothing button.
Editing smooth pathsWhen smoothing is switched on, the drag handles mark the control points of the Bezier curves.
### Further reading
- Read more about segmented connectors in the docs on this page: https://docs.jsplumbtoolkit.com/toolkit/6.x/lib/connectors#segmented
- See this demo at [https://jsplumbtoolkit.com/demonstrations/segmented-connectors](https://jsplumbtoolkit.com/demonstrations/segmented-connectors)