Package | ardisia.charts.treeMap.data |
Class | public class TreeMapData |
Inheritance | TreeMapData Object |
Property | Defined By | ||
---|---|---|---|
childNodes : Array
The child nodes (if any) array of TreeMapData objects
| TreeMapData | ||
color : uint
The node's color. | TreeMapData | ||
isBranch : Boolean
True if the node is a branch. | TreeMapData | ||
label : String
The node's label. | TreeMapData | ||
nodeData : Object
The raw data from the user provided dataProvider for this node. | TreeMapData | ||
parentNode : TreeMapData
The parent node TreeMapData
| TreeMapData | ||
weight : Number
The node's weight. | TreeMapData |
Method | Defined By | ||
---|---|---|---|
TreeMapData(weight:Number = 0, isBranch:Boolean = false, nodeData:Object = null, childNodes:Array = null, label:String = null, color:uint = 0x000000) | TreeMapData |
childNodes | property |
public var childNodes:Array
The child nodes (if any) array of TreeMapData objects
The default value is null
.
color | property |
public var color:uint
The node's color.
The default value is 0x000000
.
isBranch | property |
public var isBranch:Boolean
True if the node is a branch. E.G. whether it has child nodes.
The default value is false
.
label | property |
public var label:String
The node's label.
The default value is null
.
nodeData | property |
public var nodeData:Object
The raw data from the user provided dataProvider for this node.
The default value is null
.
parentNode | property |
weight | property |
public var weight:Number
The node's weight.
The default value is 0
.
TreeMapData | () | Constructor |
public function TreeMapData(weight:Number = 0, isBranch:Boolean = false, nodeData:Object = null, childNodes:Array = null, label:String = null, color:uint = 0x000000)
weight:Number (default = 0 )
| |
isBranch:Boolean (default = false )
| |
nodeData:Object (default = null )
| |
childNodes:Array (default = null )
| |
label:String (default = null )
| |
color:uint (default = 0x000000 )
|