-
The following code produces an error due to the edge from A -> group.
```
var g = new graphlib.Graph({compound:true});
g.setGraph({});
g.setNode("A", {label:'A'});
g.setNode("B", {label:'B'});
g…
-
Noticed that i had to split my questions up. Same topic as https://github.com/cpettitt/dagre/issues/130 (http://jsfiddle.net/aJg2G/4/)
- is it possible to have a mix of edgeInterpolate for certain edg…
-
I tried to layout my data with dagre-d3.
There are three issues for me on this picture:
1. Edges are crossed but there are visible ways to avoid it.
Can you advice some option to avoid it?
2. Some…
NtsDK updated
6 years ago
-
Would it be possible to modify `dagre` to achieve the title goal: rendering labels next to edges, instead of on top of them? My use case is that I have reasonably large labels (say 6 lines of 30 chara…
-
Hi,
I am struggling with creating horizontal hierarchical layout with _Cytoscape.Js_ and _Cola_. _Cytoscape.Js_ does not support horizontal _breadth first layout_ natively, I was hoping _Cola_ cou…
-
使用g6时遇到了一个问题,如下demo
[demo](https://codesandbox.io/s/blazing-paper-j0dwu6?file=/src/App.vue)
![image](https://user-images.githubusercontent.com/27846243/157398401-ba3268ca-6728-4a80-a8b0-6bb7f819…
-
Hello Bob!
Would you spare a moment to offer some advice which may lead me to working on exposing [graphlib's compound graph feature](https://github.com/dagrejs/graphlib/wiki/API-Reference#compou…
-
Hi everyone,
First of all, congratulations for this awesome library.
I am using the library **graphlib-dot** to read a dot graphic and render it with **dagreD3**. The rendering works perfect except …
-
Not sure if this a bug or by design, but I'm getting overlapping edges in some of my graphs. I've pulled together a minimal test case.
The following graph:
```
digraph {
A2 -> B1
A1 -> B1
A2 -…
-
I am using dagre-d3.js to create hierarchical graph. Now I have a requirement to make the node clickable and perform a function. I am unable to achieve that.
current some of my code looks like
var …