Ports
A common use-case is for connections to link to a designated area on a node boundary.
Such an area is called a port.
LFOFSHPOUTFILTERINFRESOUT
import React from 'react';import { graph } from '@regraph/graph';import { Line } from '@regraph/connections';import FilterChip from './FilterChip';import LfoChip from './LfoChip';const Graph = graph({extractBoxesFromNodes: true,layout: true,autoBox: true,connection: {type: Line,strokeWidth: 1,},});export default () => (<Graphwidth={360}height={200}nodeLayer="html"nodes={[{ id: 'lfo', x: 40, y: 40, type: LfoChip },{ id: 'filter', x: 240, y: 40, type: FilterChip },]}connections={[{id: '1',src: { id: 'lfo', port: 'out', anchor: 'right' },dst: { id: 'filter', port: 'cutoff', anchor: 'left' },},]}/>);