| Package | com.asterisq.graph.views |
| Class | public class ChainedGraphView |
| Inheritance | ChainedGraphView flash.events.EventDispatcher |
| Implements | IGraphView |
| Property | Defined by | ||
|---|---|---|---|
| graphViews : Array
An ordered list of IGraphView implementations.
| ChainedGraphView | ||
| model : IGraph
The graph data from which the contents of this view is calculated.
| ChainedGraphView | ||
| view : IGraph
The calculated view.
| ChainedGraphView | ||
| Method | Defined by | ||
|---|---|---|---|
|
Creates a new TreeGraphView.
| ChainedGraphView | ||
| graphViews | property |
graphViews:Array [read-write]An ordered list of IGraphView implementations. The graph views affect the model in order starting at the beginning of the array. If the array is empty, the view will not be updated.
Setting this property affects the model and view
properties of the graph views in the chain.
public function get graphViews():Array
public function set graphViews(value:Array):void
| model | property |
model:IGraph [read-write]
The graph data from which the contents of this view is calculated.
This property is a reference to the model property of
the first graph view in the chain.
public function get model():IGraph
public function set model(value:IGraph):void
| view | property |
view:IGraph [read-write]
The calculated view. This property is a reference to the view
property of the last graph view in the chain.
public function get view():IGraph
public function set view(value:IGraph):void
| ChainedGraphView | () | constructor |
public function ChainedGraphView()Creates a new TreeGraphView.