Loading...
Snake Layout is a special type of graph layout that can more efficiently display long chain structures in a limited space. Note that the graph data must ensure that nodes are linearly arranged from the source node to the sink node, forming a clear path.
Nodes are arranged in an S-shape: the first node is at the start of the first row, subsequent nodes are arranged to the right in the first row until the end. At the end of the row, the next row's nodes are arranged from right to left. This process repeats until all nodes are placed.
Suitable for scenarios that require compact presentation of linear relationships:
Long process visualization
Perfect for scenarios with many process steps, such as approval flows, production line procedures, logistics routes, etc.
Hierarchical structures in limited space
When the hierarchy is too long but the canvas is limited, rows can be folded to save space. For example, API call dependencies (client → gateway → serviceA → serviceB → database, snake layout compresses 5 layers into 2 rows), or file directory trees (deeply nested folder structures, e.g., src/components/utils/helpers/..., using snake layout to fold subdirectories horizontally).
createGraph({autoFit: 'center',data: {nodes: new Array(16).fill(0).map((_, i) => ({ id: `${i}` })),edges: new Array(15).fill(0).map((_, i) => ({ source: `${i}`, target: `${i + 1}` })),},node: {style: {labelFill: '#fff',labelPlacement: 'center',labelText: (d) => d.id,},},behaviors: ['drag-canvas'],layout: {type: 'snake',clockwise: true,cols: 4,colGap: 30,rowGap: 30,padding: 15,nodeSize: 30,},},{ width: 600, height: 400 },(gui, graph) => {const options = {type: 'snake',clockwise: true,cols: 4,colGap: 30,rowGap: 30,padding: 15,nodeSize: 30,};const optionFolder = gui.addFolder('Grid Layout Options');optionFolder.add(options, 'type').disable(true);optionFolder.add(options, 'cols', 2, 10, 1);optionFolder.add(options, 'colGap', 10, 150, 1);optionFolder.add(options, 'rowGap', 10, 150, 1);optionFolder.add(options, 'padding', 5, 100, 1);optionFolder.add(options, 'nodeSize', 10, 50, 30);optionFolder.add(options, 'clockwise');optionFolder.onChange(({ property, value }) => {graph.setLayout({type: 'snake',[property]: value,});graph.layout();});},);
If the layout has specific properties, they are listed below. For common layout options, see Base Layout Options
Property | Description | Type | Default | Required |
---|---|---|---|---|
type | Layout type | snake | - | ✓ |
clockwise | Whether nodes are arranged clockwise | boolean | true | |
colGap | Gap size between columns | number | Automatically calculated by canvas width and total columns | |
cols | Number of columns | number | 5 | |
nodeSize | Node size | Size | ((node: NodeData) => Size) | - | |
padding | Padding, i.e., distance from layout area to canvas boundary | number | number[] | 0 | |
rowGap | Gap size between rows | number | Automatically calculated by canvas height and total rows | |
sortBy | Node sorting method | (nodeA: NodeData, nodeB: NodeData) => -1 | 0 | 1 | Default is the path order in the graph |