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

Really enjoying the results I'm getting with dagre-d3, but is there any way to specify node alignment between two connected nodes? I am trying to align the modulator and gainNode...

Please fix the define functionality for dagre-d3 to with with requireJs. I see three issues : Issue 1. When including requirejs library above dagre-d3.js library in the browser like :...

Hi, I'm trying to get nested children's details for a selected node. As of now, I'm only getting the 1st level children details. So is there a way to get...

For edge curvature of type d3.curveStep , there is a overlap of edge arrow and node. Please refer the below screenshot. ![image](https://user-images.githubusercontent.com/6383981/59248320-ab859f00-8c3f-11e9-8155-3271be2f5558.png) Code snippet (Used the demo code) ``` Dagre...

I'm pulling Jira ticket data and dependencies and attempting to graph them. This is the result I have so far using all of Dagre's default sorting values. There are many...

Starting with Chrome 53, a huge padding space shows up for HTML inside SVG. On Windows 10, set DPI to 300% and log off (the higher the DPI, the more...

Hi all. Is it possible to set the Cluster Group Node width and height properties? I'm trying to tweak my way out from `cluster.html` without success. what didn't work so...

Hi, I would like to change the nodeseparation per node and not globally like this: ``` var g = new dagreD3.graphlib.Graph() .setGraph({ rankdir: 'LR', edgesep: 10, ranksep: 60, nodesep: 10...

Just wondering how to enforce the nodesep? See the following diagram. Even if I set nodesep, the edges seem to add some space between the nodes. ![screenshot from 2018-08-07 17-07-10](https://user-images.githubusercontent.com/6195346/43808986-7cd06866-9a64-11e8-8875-df4d29572a88.png)

wanted to create a simple shape with a circle and "+" text in it like this: ``` render.shapes().plusShape = function(parent, bbox, node) { var w = bbox.width; var h =...