You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
Great project, thanks for making it!
It would be great if you could easily search for a GAV within the graph and the center the graph on it, show only its direct links, etc.
Matan
The text was updated successfully, but these errors were encountered:
Meanwhile, i guess you are already using the customizable javascript functions to display your specific GAV project with a specific color and size, as in this example :
node: function(node) {
var size = 21 + node.links.length * 0;
var color = 0xffffff;
if(node.data.groupId=="com.mycompany" && node.data.artifactId=="my-artifact") {
color = 0xff2211;
size = 100; // very big !!!
}
return { size:size, color:color };
},
Hi,
Great project, thanks for making it!
It would be great if you could easily search for a GAV within the graph and the center the graph on it, show only its direct links, etc.
Matan
The text was updated successfully, but these errors were encountered: