Snapline
Previous
Minimap
Next
Timebar
Loading...
The Snapline plugin provides intelligent alignment guidelines for the canvas, automatically displaying guide lines when moving nodes and supporting automatic snapping. It helps users achieve precise alignment and is an important tool for improving efficiency and accuracy in graphic editing.
The Snapline plugin is mainly suitable for the following scenarios:
const graph = new Graph({plugins: [{type: 'snapline',key: 'my-snapline', // Specify unique identifiertolerance: 5, // Alignment snap thresholdoffset: 20, // Guide line extension distanceautoSnap: true, // Enable automatic snapping},],});
createGraph({data: {nodes: [{ id: 'node-0' },{ id: 'node-1' },{ id: 'node-2' },{ id: 'node-3' },{ id: 'node-4' },{ id: 'node-5' },],edges: [{ source: 'node-0', target: 'node-1' },{ source: 'node-0', target: 'node-2' },{ source: 'node-0', target: 'node-3' },{ source: 'node-0', target: 'node-4' },{ source: 'node-1', target: 'node-0' },{ source: 'node-2', target: 'node-0' },{ source: 'node-3', target: 'node-0' },{ source: 'node-4', target: 'node-0' },{ source: 'node-5', target: 'node-0' },],},layout: { type: 'grid' },behaviors: ['drag-canvas', 'drag-element'],plugins: [{ type: 'grid-line', key: 'grid-line', size: 30 },{type: 'snapline',key: 'snapline',tolerance: 5,offset: 20,verticalLineStyle: { stroke: '#F08F56', lineWidth: 2 },horizontalLineStyle: { stroke: '#17C76F', lineWidth: 2 },},],},{ width: 600, height: 300 },(gui, graph) => {const options = {type: 'snapline',tolerance: 5,offset: 20,autoSnap: true,};const optionFolder = gui.addFolder('Snapline Options');optionFolder.add(options, 'type').disable(true);optionFolder.add(options, 'tolerance', 1, 20, 1);optionFolder.add(options, 'offset', 1, 50, 1);optionFolder.add(options, 'autoSnap');optionFolder.onChange(({ property, value }) => {graph.updatePlugin({key: 'snapline',[property]: value,});graph.render();});},);
Property | Description | Type | Default | Required |
---|---|---|---|---|
type | Plugin type | string | 'snapline' | ✓ |
key | Plugin unique identifier | string | - | |
tolerance | The alignment accuracy, that is, when the distance between the moved node and the target position is less than tolerance, the alignment line is displayed | number | 5 | |
offset | The extension distance of the snapline | number | 20 | |
autoSnap | Whether to enable automatic snapping | boolean | true | |
shape | Specifies which shape on the element to use as the reference shape: - 'key' : uses the key shape of the element as the reference shape- Function : receives the element and returns a shape | string | ((node: Node) => DisplayObject) | 'key' | |
verticalLineStyle | Vertical snapline style | BaseStyleProps | { stroke: '#1783FF' } | |
horizontalLineStyle | Horizontal snapline style | BaseStyleProps | { stroke: '#1783FF' } | |
filter | Filter nodes that do not need to participate in alignment | (node: Node) => boolean | () => true |
The shape
property specifies the reference shape for elements and supports the following configurations:
// Use the key shape as reference{type: 'snapline',shape: 'key'}// Use custom function to return reference shape{type: 'snapline',shape: (node) => {return node.getShape('custom-shape');}}
Property | Description | Type | Default |
---|---|---|---|
stroke | Line color | string | Pattern | null | '#1783FF' |
opacity | Overall opacity | number | string | 1 |
strokeOpacity | Stroke opacity | number | string | 1 |
lineWidth | Line width | number | string | 1 |
lineCap | Line end style | 'butt' | 'round' | 'square' | 'butt' |
lineJoin | Line join style | 'miter' | 'round' | 'bevel' | 'miter' |
lineDash | Dash line configuration | number | string | (string | number)[] | - |
lineDashOffset | Dash line offset | number | 0 |
shadowBlur | Shadow blur | number | 0 |
shadowColor | Shadow color | string | - |
shadowOffsetX | Shadow X offset | number | 0 |
shadowOffsetY | Shadow Y offset | number | 0 |
cursor | Mouse cursor style | string | 'default' |
zIndex | Rendering level | number | 0 |
Example configuration:
{type: 'snapline',horizontalLineStyle: {stroke: '#F08F56',strokeOpacity: 0.8,lineWidth: 2,lineDash: [4, 4],lineDashOffset: 0,opacity: 1,cursor: 'move',},verticalLineStyle: {stroke: '#17C76F',strokeOpacity: 0.8,lineWidth: 2,lineDash: [4, 4],lineDashOffset: 0,opacity: 1,cursor: 'move',},}
The simplest usage:
const graph = new Graph({plugins: ['snapline'],});
You can customize the snapline behavior according to your needs:
const graph = new Graph({plugins: [{type: 'snapline',tolerance: 8, // Larger snap rangeoffset: 30, // Longer extension lineshorizontalLineStyle: {stroke: '#1890ff',lineWidth: 2,},filter: (node) => node.id !== 'node-0', // Filter nodes by id, exclude from alignment},],});