Packageardisia.charts.treeMap.data
Classpublic class TreeMapData
InheritanceTreeMapData Inheritance Object

Normalized data for each node in the TreeMap class.



Public Properties
 PropertyDefined 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
Public Methods
 MethodDefined By
  
TreeMapData(weight:Number = 0, isBranch:Boolean = false, nodeData:Object = null, childNodes:Array = null, label:String = null, color:uint = 0x000000)
TreeMapData
Property Detail
childNodesproperty
public var childNodes:Array

The child nodes (if any) array of TreeMapData objects

The default value is null.

colorproperty 
public var color:uint

The node's color.

The default value is 0x000000.

isBranchproperty 
public var isBranch:Boolean

True if the node is a branch. E.G. whether it has child nodes.

The default value is false.

labelproperty 
public var label:String

The node's label.

The default value is null.

nodeDataproperty 
public var nodeData:Object

The raw data from the user provided dataProvider for this node.

The default value is null.

parentNodeproperty 
public var parentNode:TreeMapData

The parent node TreeMapData

The default value is null.

weightproperty 
public var weight:Number

The node's weight.

The default value is 0.

Constructor Detail
TreeMapData()Constructor
public function TreeMapData(weight:Number = 0, isBranch:Boolean = false, nodeData:Object = null, childNodes:Array = null, label:String = null, color:uint = 0x000000)



Parameters
weight:Number (default = 0)
 
isBranch:Boolean (default = false)
 
nodeData:Object (default = null)
 
childNodes:Array (default = null)
 
label:String (default = null)
 
color:uint (default = 0x000000)