JGraph Layout Pro 1.4.3 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News JGraph Layout Pro 1.4.3 (Default branch)
# 1  
Old 11-19-2008
JGraph Layout Pro 1.4.3 (Default branch)

Image JGraph Layout Pro is a high performance graph layout library for JGraph that automatically positions your graph, diagram, or network in a visually pleasing manner. Layout Pro provides flexibility and a simple design, enabling you to use circular, tree, force-directed, and hierarchical layouts with ease. Example uses are organisational charts, workflow and process diagrams, call charts, network diagrams, UML tools, and more. It comes with its own documentation and an example applet. License: Other/Proprietary License with Source Changes:
This release adds an orthogonal routing option for tree layouts. It improves the maintenance of model ordering in layout results, and adds the option to scan the hierarchical layers from sources, sometimes improving the layout result. Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question
Graph::Easy::Layout::Force(3pm) 			User Contributed Perl Documentation			   Graph::Easy::Layout::Force(3pm)

NAME
Graph::Easy::Layout::Force - Force-based layouter for Graph::Easy SYNOPSIS
use Graph::Easy; my $graph = Graph::Easy->new(); $graph->add_edge ('Bonn', 'Berlin'); $graph->add_edge ('Bonn', 'Ulm'); $graph->add_edge ('Ulm', 'Berlin'); $graph->layout( type => 'force' ); print $graph->as_ascii( ); # prints: # +------------------------+ # | v # +------+ +-----+ +--------+ # | Bonn | --> | Ulm | --> | Berlin | # +------+ +-----+ +--------+ DESCRIPTION
"Graph::Easy::Layout::Force" contains routines that calculate a force-based layout for a graph. Nodes repell each other, while edges connecting them draw them together. The layouter calculates the forces on each node, then moves them around according to these forces until things have settled down. Used automatically by Graph::Easy. EXPORT
Exports nothing. SEE ALSO
Graph::Easy. METHODS
This module injects the following methods into Graph::Easy: _layout_force() Calculates the node position with a force-based method. AUTHOR
Copyright (C) 2004 - 2007 by Tels <http://bloodgate.com>. See the LICENSE file for information. perl v5.14.2 2011-12-23 Graph::Easy::Layout::Force(3pm)