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

Currently, `dagre-d3` depends on the entire [`d3`](https://github.com/d3/d3) library, but it only directly uses exports from the [`d3-selection`](https://github.com/d3/d3-selection) and [`d3-shape`](https://github.com/d3/d3-shape) libraries. You can verify this by [searching for "d3" in this...

This PR resolves the disappearance of a path's arrow in some use cases. An arrowId is just enough to refer an arrow. And in some use cases, a baseUrl created...

Solution to add css class from `graph.setNode(`node`, { class: "state-text" })` to clusters in the same way as is done for nodes. https://github.com/dagrejs/dagre-d3/issues/420

Hello, We are currently using this library in our application, and have ran into some issues with the reference that this library has on D3 version 4. We've worked around...

Webpack would be handy for packaging dagre-d3, but it looks like there's something in the way that the module structure is put together that is breaking it. When I run...

Does dagre-d3 have any in-build functionality to be able to minimize/collapse subgraphs? I saw this demo of collapsible trees on d3: https://observablehq.com/@d3/collapsible-tree Is it possible to do something like this...

Hi! Is it possible to filter out some nodes? i.e. I want to make them a part of the graph, but I don't want nodesep to be applied to them...

Redrawing the graph after changing the zoom scale causes html labels to appear with the wrong size and position (too big or small for the node depending if zoomed in...

Could I please ask if you might consider creating a homepage at https://dagrejs.github.io with a list of examples? For example, vega has a nice project homepage with examples: https://vega.github.io/vega-lite/ Sorry...

Here's unit test I used: ``` diff --git a/test/bundle-test.js b/test/bundle-test.js index c9377cf..8abc072 100644 --- a/test/bundle-test.js +++ b/test/bundle-test.js @@ -55,6 +55,13 @@ describe("dagreD3", function() { expect(d3.select("#b-lab").datum()).to.equal("b"); }); + it("are created for...