prefuse.action.layout |
Action modules providing layout algorithms for use by prefuse visualizations.
All provided layouts descend from the abstract
{@link prefuse.action.layout.Layout} class, allowing
the layout bounds and anchor point to be customized on a per-Action basis.
Layouts specifically for graph or tree structured data are available in the
{@link prefuse.action.layout.graph} package.
|
Java Source File Name | Type | Comment |
AxisLabelLayout.java | Class | Layout Action that positions axis grid lines and labels for a given
range model. |
AxisLayout.java | Class | Layout Action that assigns positions along a single dimension (either x or
y) according to a specified data field. |
CircleLayout.java | Class | Layout action that positions visual items along a circle. |
CollapsedStackLayout.java | Class | Layout Action that updates the outlines of polygons in a stacked line chart,
properly setting the coordinates of "collapsed" stacks. |
CollapsedSubtreeLayout.java | Class | Layout Action that sets the positions for newly collapsed or newly
expanded nodes of a tree. |
GridLayout.java | Class | Implements a uniform grid-based layout. |
Layout.java | Class | Abstract base class providing convenience methods for layout algorithms. |
RandomLayout.java | Class | Performs a random layout of items within the layout bounds. |
SpecifiedLayout.java | Class | Layout Action that sets x, y coordinates for a visual item by simply
looking them up from another data field. |
StackedAreaChart.java | Class | Layout Action that computes a stacked area chart, in which a series of
data values are consecutively stacked on top of each other. |