Rect
Reading needs 1 minutes
阅读本节前,请先阅读 API - 节点配置项 章节。
createGraph({autoFit: 'center',data: { nodes: [{ id: 'node1', style: { size: 40, fill: '#7e3feb' } }] },node: { type: 'rect' },plugins: [{ type: 'grid-line', size: 30 }],},{ width: 600, height: 220 },(gui, graph) => {gui.add({ type: 'rect' }, 'type').disable();const options = { 'size[0]': 48, 'size[1]': 24 };const optionFolder = gui.addFolder('rect.style');optionFolder.add(options, 'size[0]', 0, 100, 1);optionFolder.add(options, 'size[1]', 0, 100, 1);optionFolder.onChange(({ object }) => {graph.updateNodeData([{ id: 'node1', style: { size: [object['size[0]'], object['size[1]']] } }]);graph.render();});},);
设置 node.type
为 rect
以使用矩形节点。
If the element has its specific properties, we will list them below. For all generic style attributes, seeBaseNode