Documentation / FAQ / The graph viewer
How do I disable the automatic node placement in the graph viewer ?
Use Graph.display() with argument false.
Graph graph = new DefaultGraph("MyGraph");
graph.display( false );
In this case you must give the position of nodes by yourself using x
, y
and z
attributes (or the xy
or xyz
attributes). If a node or sprite has no position, it will not be displayed !