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?
VisualizationViewer. I thinkVisualizationViewerhas its own viewable limit which is defined by its dimension (preferredSizeparameter). 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