| Package | flare.vis.operator.layout |
| Class | public class IndentedTreeLayout |
| Inheritance | IndentedTreeLayout Layout Operator |
| Property | Defined by | ||
|---|---|---|---|
| breadthSpacing : Number The spacing to use between rows in the layout.
| IndentedTreeLayout | ||
| depthSpacing : Number The spacing to use between depth levels (the amount of indent).
| IndentedTreeLayout | ||
![]() | enabled : Boolean Indicates if the operator is enabled or disabled.
| Operator | |
![]() | layoutAnchor : Point The layout anchor, used by some layout instances to place an
initial item or determine a focal point.
| Layout | |
![]() | layoutBounds : Rectangle The layout bounds for the layout.
| Layout | |
![]() | layoutRoot : DataSprite
The layout root, the root node for tree layouts.
| Layout | |
![]() | layoutType : String = "null" The type of layout and axes.
| Layout | |
![]() | parameters : Object
Sets parameter values for this operator.
| Operator | |
![]() | visualization : Visualization
The visualization processed by this operator.
| Operator | |
| Method | Defined by | ||
|---|---|---|---|
|
IndentedTreeLayout(depthSpace:Number = 50, breadthSpace:Number = 5)
Creates a new IndentedTreeLayout.
| IndentedTreeLayout | ||
![]() |
applyParameters(op:IOperator, params:Object):void
[static]
Static method that applies parameter settings to an operator.
| Operator | |
![]() |
clearEdgePoints():void
Strips all EdgeSprites in a visualization of any control points.
| Layout | |
![]() |
Hides the axes.
| Layout | |
![]() |
operate(t:Transitioner = null):void
Performs an operation over the contents of a visualization.
| Layout | |
![]() |
setup():void
Setup method invoked whenever this operator's visualization
property is set.
| Operator | |
![]() |
Reveals the axes.
| Layout | |
![]() |
[static]
Updates all edges to be straight lines.
| Layout | |
| Method | Defined by | ||
|---|---|---|---|
![]() |
autoAnchor():void
Automatically-generate an anchor point.
| Layout | |
|
layout():void
Calculates the spatial layout of visualized items.
| IndentedTreeLayout | ||
![]() |
minAngle(a1:Number, a2:Number):Number
Returns an angle value that minimizes the angular distance
between a reference angle and a target angle.
| Layout | |
| breadthSpacing | property |
breadthSpacing:Number [read-write]The spacing to use between rows in the layout.
Implementation public function get breadthSpacing():Number
public function set breadthSpacing(value:Number):void
| depthSpacing | property |
depthSpacing:Number [read-write]The spacing to use between depth levels (the amount of indent).
Implementation public function get depthSpacing():Number
public function set depthSpacing(value:Number):void
| IndentedTreeLayout | () | constructor |
public function IndentedTreeLayout(depthSpace:Number = 50, breadthSpace:Number = 5)Creates a new IndentedTreeLayout.
ParametersdepthSpace:Number (default = 50) — the amount of indent between depth levels
|
|
breadthSpace:Number (default = 5) — the amount of spacing between rows
|
| layout | () | method |
protected override function layout():voidCalculates the spatial layout of visualized items. Layout operators override this method with their layout implementations.