Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

dagre-compound

simplejason325.7kMIT0.0.13TypeScript support: included

A multi-level compound graph layout library based on dagre

graph, layout, dagre, compound

readme

Dagre Compound

A multi-level compound graph layout library based on dagre.

📦 Installation

$ npm i dagre-compound

🔨 Usage

import { buildGraph, HierarchyGraphNodeInfo } from 'dagre-compound';

const data = {
    nodes: [
      { id: '0-1'},
      { id: '0-2'},
      { id: '1-1'},
      { id: '1-2'},
    ],
    edges: [
      { v: '0-1', w: '0-2' },
      { v: '0-2', w: '1-1' },
      { v: '1-1', w: '1-2' }
    ],
    compound: {
      GROUP0: ['0-1', '0-2']
    }
}
const renderInfo: HierarchyGraphNodeInfo = buildGraph(data);