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

I removed all nodes before I set new nodes, but the cluster is still there, any method to remove it? A temporary solution: `container.select('g.output').selectAll('.clusters').remove();`

I'm using this with dagrejs/dagre#263 to prevent unexpected layout changes when adding nodes, but this may be useful for other options too.

![image](https://user-images.githubusercontent.com/9092073/87254315-a395c100-c436-11ea-83d7-8d4f1ff7d182.png) var svg = d3.select('svg'); var inner = svg.select('g'); var graphRender = new dagreD3.render(); the line of code that is issuing this error: --> graphRender(inner, domSvg);

Well, so I have been trying to use the dagre library in my react application. So for the dynamic rendering of the graph when adding new nodes, I have been...

Using latest version from bower. Got a nice graph displayed, want to add tooltips or other label components, starting with a simple html test though and it's rendering ![screen shot...

This is probably not a bug, just something I do not at all know how to handle. But just in case someone here knows better, please check here: https://stackoverflow.com/questions/62305161/how-do-i-know-if-the-whole-library-has-been-loaded

Really great library. However using clusters I've found it's frustrating to have very large clusters to just contain the edges going to the next group: Here's an example, the top...

```js let html= ` function changeFunc() { alert("12131"); } Change ` let data = { nodes: [ { id: "1", label: "Node 1", labelType: "html" }, { id: "2", label:...

I have been working with Dagre-D3 now for quite a bit now. Really love it! Recently I switched to an updated version of the library to get clusters to work....