dagre-d3 icon indicating copy to clipboard operation
dagre-d3 copied to clipboard

A D3-based renderer for Dagre

Results 107 dagre-d3 issues
Sort by recently updated
recently updated
newest added

When assigning a parent to a node, the rendering fails with `TypeError: label is undefined`. Example: http://jsbin.com/qemoqitowa/edit?html,output (look for "parent": "Flow TWO") If I don't assign a parent, the graph...

Hi, hope I don't abuse the issue log - but I have a problem with removing the cluster node. Not sure if this is bug, or I'm doing something wrong...

beside changing the order of the edges, how to ensure two edge not interset for example: changing `g.addEdge(a, b, 1); g.addEdge(c, d, 2); ` to `g.addEdge(c, d, 2); g.addEdge(a, b,...

Hi, First of all, congrats on a great tool! Best I found for graph layouts on d3. I have an issue with HTML labels that they adjust to the current...

按照一贯的步骤在安装完dagre-d3后,import到项目中后,任然报错graphlib.js:5 Uncaught Error: Cannot find module "."

I read the project's wiki to learn how to use this dagre-d3 library. I encountered some frustrating problem when I try to write a demo in my machine, refer to...

Is it possible to support expand/collapse subgraphs? Just like [this demo](https://rawgit.com/iVis-at-Bilkent/cytoscape.js-expand-collapse/master/demo-undoable.html) implemented with cytoscape. The source code of this demo is [here](https://github.com/iVis-at-Bilkent/cytoscape.js-expand-collapse/blob/master/demo-undoable.html).

When the child node is larger than 2, it will be filled to the same height as the parent node.

Is there a way adjust the ratio between height and width of the rendered graph? My graph has hundreds of nodes and many levels, but it's being rendered very wide...

Hi, I've been playing with Dagre-d3 and love what it allows me to do! I've mostly adapted the ETL Visualisation, but I'm running into an issue. Everything works fine and...