Skip to content
Snippets Groups Projects
Commit b9b01f44 authored by Andrew Or's avatar Andrew Or
Browse files

[HOT FIX #6076] DAG visualization: curve the edges

parent 4e290522
No related branches found
No related tags found
No related merge requests found
......@@ -272,7 +272,8 @@ function preprocessGraphLayout(g, forJob) {
// Curve the edges
var edges = g.edges();
for (var j = 0; j < edges.length; j++) {
edges[j].lineInterpolate = "basis";
var edge = g.edge(edges[j]);
edge.lineInterpolate = "basis";
}
// Adjust vertical separation between nodes
if (forJob) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment