CreateEdge
Previous
CollapseExpand
Next
DragCanvas
Loading...
Create edges by dragging or clicking nodes, and support custom edge styles.
createGraph({data: {nodes: [{ id: 'node1', combo: 'combo1', style: { x: 250, y: 150 } },{ id: 'node2', combo: 'combo1', style: { x: 350, y: 150 } },{ id: 'node3', combo: 'combo2', style: { x: 250, y: 300 } },],edges: [],combos: [{ id: 'combo1', combo: 'combo2' },{ id: 'combo2', style: {} },],},node: { style: { fill: '#873bf4' } },edge: { style: { stroke: '#8b9baf' } },behaviors: [{type: 'create-edge',key: 'create-edge',},],plugins: [{ type: 'grid-line', size: 30 }],animation: true,},{ width: 600, height: 400 },(gui, graph) => {const options = {key: 'create-edge',type: 'create-edge',animation: true,enable: true,trigger: 'drag',};const optionFolder = gui.addFolder('CollapseExpand Options');optionFolder.add(options, 'type').disable(true);optionFolder.add(options, 'animation');optionFolder.add(options, 'enable');optionFolder.add(options, 'trigger', ['drag', 'click']);optionFolder.onChange(({ property, value }) => {graph.updateBehavior({key: 'create-edge',[property]: value,});graph.render();});},);
string
Behavior key, that is, the unique identifier
Used to identify the behavior for further operations
// Update behavior optionsgraph.updateBehavior({key: 'key', ...});
string
Behavior type
boolean | ((event: Event) => boolean) Default:
true
Whether to enable the function of creating edges
Callback when create edge, return EdgeData.
(edge: EdgeData) => void
Callback when create is completed.
EdgeStyle
Style configs of the new edge
'click' | 'drag' Default:
'drag'
trigger click or drag.
destroy(): void;