JUNG — the Java Universal Network/Graph Framework--is a software library that provides a common and extensible language for the modeling, analysis, and visualization of data that can be represented as a graph or network. It is written in Java, which allows JUNG-based applications to make use of the ...
17
votes
3answers
1k views
comparing open source java graph drawing frameworks(JUNG and Prefuse) for drawing network topology
which of the open source Java graph drawing frameworks to use for a network diagram with the following requirements? The graph will have less than 1000 nodes.
1) has parallel edges
2) directed and ...
5
votes
1answer
159 views
Code jumps out of a jar and runs? What is causing this?
I am trying to get a sample program working with JUNG, a graphing tool in Java. I downloaded and referenced all the .jar files in eclipse so my project hierarchy looks like this:
In Test.java I have ...
4
votes
2answers
133 views
is it possible to create a java applet, during execution of another java application
I have been developing a Java application which executes a long series of queries and calculations, and presents its results as a series of HTML pages. For visualizing graphs I have been playing ...
4
votes
2answers
674 views
What is a maven repository url for jung2 (java graph framework)?
I am looking for a maven repository that distributes jung2 packages. Unfortunetely I can not find any information on its location.
Update:
I have included the cental repository repo1.
...
3
votes
2answers
723 views
writing JUNG graphs to images: can't reliably render complete graph
I've been using JUNG to visualize some simple graphs, and I'd like to write several of them to a PNG file. Unfortunately, the images often appear to render before the graph is finished painting, ...
3
votes
1answer
267 views
apply graph analysis on networked data represented with RDF
I want to run some analysis on networked data having multiple modes(i.e. multiple types of network nodes) and multiplex relations(i.e. multiples types of network edges).
The analysis is probably ...
3
votes
2answers
531 views
Improve the rendering of a JUNG graph
i am using jung to visually display large data sets, (1000s of nodes) but the system becomes very laggy when I zoom in or out, or move a node. Is there anyway to improve the rendering of graphs in ...
3
votes
1answer
1k views
Cand Jung graphics apear in the same place every time?
I'm using JUNG ( http://jung.sourceforge.net/index.html ) to draw graphics in java. The software is great but I have a small question. How can I be sure that the displayed graph is each time the same ...
2
votes
0answers
52 views
No content while using SWING + JUNG to refresh graph visualization
I have following java code in my thread class:
@Override
public void run() {
JFrame window = new JFrame("Visualization POC");
window.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
...
2
votes
1answer
75 views
GraphZoomScrollPane and VisualizationViewer dependancies
I am struck up in situation where my GraphZoomScrollPane is working really weierdly, where the scroll bars disappear suddenly after some zoom in and zoom out operations. They do come bak but with ...
2
votes
0answers
165 views
GraphZoomScrollPane scrolling problem
I'm working with the Jung Framework and got some issues:
I'm painting a graph into a GraphZoomScrollPane.
I remark that it doesn't scroll enough to get all the graph.
When I add vertices while the ...
2
votes
1answer
194 views
Representing RDF data in JUNG graph
I'm loading RDF data into a JUNG graph to do some analysis.
So I create a new graph with:
DirectedGraph g = new DirectedSparseGraph<String,GraphLink>();
I created a support class for ...
2
votes
2answers
339 views
Interactive Python Network/Graph Modeling
I'm looking for a python library that will allow me to interactively draw networks and graphs and attach data to nodes and edges.
I have found two libraries for Java that seem to do what I need: JUNG ...
2
votes
2answers
419 views
port JUNG into GWT
there is a very good java graphing library JUNG
I wonder if there exists any GWT library that does what JUNG do ? i'm aware there exist a commercial Javascript graphing library mxGraph. But mxGraph ...
2
votes
4answers
937 views
Any good tutorials for “JUNG2”?
I just started looking to the "Java Universal Network/Graph Framework" (JUNG) but could not find any tutorials which would help a beginner, guys i would appreciate if you could give me some good links ...
2
votes
2answers
530 views
Extracting a subgraph from a graph using JUNG?
I have a large graph that I am processing using JUNG. I was wondering if there JUNG provides a way to extract say a 2-hop neighborhood of a vertex (complete with all edges amongst themselves) into a ...
2
votes
1answer
894 views
Creating an adjacency Matrix from a JUNG Graph
Graph < Integer, Integer> g = new SparseMultigraph<Integer, Integer>();
g.addVertex(1);g.addVertex(2);g.addVertex(3);
g.addEdge(0,1,2 ,EdgeType.DIRECTED);g.addEdge(1,2,3 ...
2
votes
3answers
1k views
1
vote
1answer
37 views
How to add two edges having the same label (but different endpoints) in JUNG?
How to add two edges having the same label but different endpoints?
For example, I want to add two edges having the same label 'label1', one from vertex v-1 to vertex v-2 and the other one from ...
1
vote
0answers
37 views
Custom MouseMenu using EditingModalGraphMouse Plugin in JUNG 2.0 Java Framework
I am trying to override the default mouse menu, while adding vertex and edges to the graph. I was following this example, as it works fine but i want to know what (interfaces do i need to implement if ...
1
vote
3answers
110 views
Exporting JUNG graphs to hi-res images (preferably vector based)
In one of my projects I use JUNG2 to visualize a very large multiple-parent hierarchy graph, displayed in an applet. I would need to export the whole/parts of the graph to high resolution still ...
1
vote
2answers
165 views
Change Size/Color of Vertex in JUNG
How do you change the size of a specific vertex in Jung Visualization Library?
I'm reading the documentation but I'm not extremely familiar with java and I can't find any good examples on line.
...
1
vote
1answer
109 views
JUNG - edge picking (mouse events)
I am having some trouble dealing with pick events on JUNG graphs. I have been using the GraphMouseListener interface to listen for clicks on vertices, but now I need to add support for picking edges, ...
1
vote
1answer
65 views
JUNG, changing the graph reference on a visualization viewer
We have developed a little graph editor with jung where you can draw graph/networks with your mouse. We use the VisualizationViewer as the panel we draw on. The VisualizationViewer holds the graph it ...
1
vote
1answer
93 views
How do I use JUNG2 in a MVC-gui?
I was playing around with JUNG2 and wanted to implement a small GUI that allows me to display and change a Graph. Following the examples from the JUNG library worked fine, but they don't separate ...
1
vote
2answers
107 views
Java JUNG Graph: Some edges miss arrows
I've made a graph with StaticLayout and changed shapes\colors of vertices. I didn't transform anything related to edges. All edges are directed, but some of them miss arrows! How could that happen?
...
1
vote
0answers
182 views
Using SWI-Prolog with Eclipse and Java (and JUNG): Should I use ProDT, PDT, or both?
I want to use SWI-Prolog, Eclipse, and Java together and I have two interrelated related issues:
I don't know if I should use ProDT, PDT or both in combination.
PDT says that it includes a ...
1
vote
1answer
44 views
Adding colours to custom edges
I want to add colours to the edges of the graph which I created using the JUNG library. I have edges which are in the type of custom edges where I set the labels and weights to the edges.
...
1
vote
2answers
96 views
Jung2: How to implement displaying details of a node on mouse over of a Node?
I am looking for a way how to display details of a node (as a popup) on MouseOver. Unfortunately the Jung2 tutorial does not provide any information how to implement this kind of functionality. Could ...
1
vote
1answer
83 views
Jung with RCP eclipse?
I want to use Jung in my RCP user interface, is this possible?
the problem is that the Jung library works with JPanel and I should embed this JPanel in an Eclipse view (which works with composite) :( ...
1
vote
1answer
103 views
How to get a JUNG edge length?
How do I get an edge length from a graph contructed in JUNG? In pixels would be nice but if its more complicated than that then please explain why.
1
vote
3answers
401 views
Redraw Graph on JUNG
I build a graph using JUNG (Java Universal Network/Graph Framework) with the following code:
g = new SparseMultigraph<BusStop, Travel>();
//add some Vertex and Edges
Layout<String, ...
1
vote
1answer
185 views
Rendering order in JUNG graph visualisation
I'm using JUNG2 to draw some graphs.
This is the image I get:
http://img841.imageshack.us/img841/205/graphvizkk3312164f020b4.png
I'd like to:
1) change the rendering order (labels should be the ...
1
vote
1answer
343 views
MouseEvents with JUNG and Java
I made a PluggableGraphMouse and 2 EditingGraphMousePluggings in my Java with JUNG program. If I set the modifiers to be left click and right click it works perfectly fine, here is the setModifiers ...
1
vote
2answers
324 views
How to update the size of the layout with Jung when using the picking mode?
I wondering how to change the size of the layout associated to a VisualizationViewer with jung?
I explain the purpose: actually, when using a SatelliteVisualizationViewer, we can pick a node and move ...
1
vote
1answer
533 views
tree maps in JUNG (for a shortest path algorithm)
After asking some general advice on shortest path algorithms (2D waypoint pathfinding: combinations of WPs to go from curLocation to targetLocation) and then asking about a more specific ...
1
vote
2answers
362 views
Visualizing networks in GWT
I'd like to integrate network visualization into my GWT app.
I was thinking of using JUNG (check out this question) or neato to do the layout work and GWT-Graphics to do the drawing. It's also ...
1
vote
2answers
313 views
How to add menu to change the layout of graph using jung?
I am fairly new to jung and Java as well. I want to add the menu bar to change the layout of the graph(e.g. StaticLayout, SpringLayout and so on). Can someone please tell me that how can I do it using ...
1
vote
1answer
356 views
How to plot a node in given coordinate using JUNG
I want to virtualize my network simulations and need to plot the nodes in the network. Each node has a pre-defined location and I need to plot the nodes into the correct coordination.
I am using ...
1
vote
3answers
512 views
How to label edges with probabilities in graph using Jung 2
I am fairly new to Java and Jung. I am writing a program where I need to add probabilities on edges of the event occurrence(means probability of the event that data will flow from first node to ...
1
vote
1answer
262 views
Calculating pageranks for a sparse directed graph with high percentage of deadlinks
I am a graduate student in computer science at Indiana University, Bloomington. For one of my research projects, i am working on calculating pageranks for a directed graph which is very sparse and has ...
1
vote
1answer
291 views
Can the Jung2 graph library traverse a digraph
Does anyone know if the Java Jung2 graph library provides the in-built capability to traverse a Digraph given a start Vector? I did see that there's a BFSDistanceLabeler class that returns a map of ...
1
vote
1answer
947 views
Vertex label in JUNG graph visualization
I wrote a little graph visualizer class:
public void simpleGraph(SparseMultigraph<Vertex,SEdge> graph, String name) {
Layout<Vertex, SEdge> layout = new ISOMLayout(graph);
...
1
vote
1answer
900 views
how can i draw a tree hierarchy using JUNG?
I'm new to JUNG. I tried to draw a graph of a tree using the TreeLayout but the tree never comes out like a real tree. Every time the tree looks different. How can I make the tree look like a normal ...
1
vote
1answer
406 views
JUNG cannot display large graphs?
I am using JUNG for a project and when I am displaying relatively large graphs eg 1500 nodes, my pc would not be able to handle it (graphs are rendered but If I want to navigate the graph the system ...
1
vote
1answer
456 views
Displaying 3D graphs using JUNG
I am new to JUNG, I can display graphs in 2D but can anyone show me how to show 3d graphs.
1
vote
1answer
874 views
Importing GraphML files in JUNG
I am new to JUNG, can any one show me how to import a GraphML to JUNG.
1
vote
1answer
866 views
JUNG: how to shape pickable vertices
I am using JUNG to make a network diagram. I want to shape the vertices depending upon its type. The vertices are pickable and colored. The code for vertices so far is as under:
class VertexColors ...
1
vote
2answers
2k views
how to use JUNG to color & shape vertices and edges
I am facing a problem in using JUNG. I want to draw a network diagram where the vertices will be having different shapes and colors and edges will be dashed or full line in different colors.
Since I ...
1
vote
2answers
568 views
JUNG - How to get the exact vertex in Graph?
I have to create a graph with its self-defined node type and the nodes & connections are read from a txt file one by one.
The file format is like this: startNode attibutes endNode.
Every time I ...