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 window is maximized they don't appear when the window is in a litte size.

Could anyone help me out please? Is this a bug with the Jung API?

link|improve this question

25% accept rate
GraphZoomScrollPane only acts as the container for VisualizationViewer. I think VisualizationViewer has its own viewable limit which is defined by its dimension (preferredSize parameter). For example: vv = new VisualizationViewer<Node,Link>(layout, new Dimension(800,400)); It maybe show a graph that falls within this viewable limit. jung.sourceforge.net/doc/api/edu/uci/ics/jung/visualization/… jung.sourceforge.net/doc/api/edu/uci/ics/jung/visualization/… – eee Apr 21 '11 at 22:56
Thanks a lot :) you've saved me twice :) – Jihath Apr 22 '11 at 8:59
Nice work Jihath. Can you please post an answer to the question yourself and then accept that answer so that we can close this question? Also, you need to accept answers to previous questions if they fix your problem. – Zecas May 24 at 15:55
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.