| Package | com.flextoolbox.controls.treeMapClasses |
| Class | public class TreeMapNodeData |
treeMapData
property implemented by drop-in item renderers for the TreeMap control.
While the properties of this class are writable, you should consider them to be read only. They are initialized by the TreeMap class, and read by an item renderer. Changing these values can lead to unexpected results.
| Property | Defined by | ||
|---|---|---|---|
| color : uint
The color representation of the item data, based on the treemap class'
itemToColor() method. | TreeMapNodeData | ||
| label : String
The textual representation of the item data, based on the treemap class'
itemToLabel() method. | TreeMapNodeData | ||
| owner : IUIComponent
A reference to the treemap object that owns this item.
| TreeMapNodeData | ||
| toolTip : String
The alternative textual representation of the item data, based on the treemap class'
itemToToolTip() method. | TreeMapNodeData | ||
| uid : String
The unique identifier for this item.
| TreeMapNodeData | ||
| weight : Number
The weight representation of the item data, based on the treemap class'
itemToWeight() method. | TreeMapNodeData | ||
| Method | Defined by | ||
|---|---|---|---|
|
TreeMapNodeData(label:String, weight:Number, color:uint, toolTip:String, uid:String, owner:IUIComponent)
Constructor.
| TreeMapNodeData | ||
| color | property |
public var color:uint
The color representation of the item data, based on the treemap class'
itemToColor() method.
| label | property |
public var label:String
The textual representation of the item data, based on the treemap class'
itemToLabel() method.
This property can be used as the source for data binding.
| owner | property |
public var owner:IUIComponentA reference to the treemap object that owns this item. This should be an implementation of ITreeMapBranchRenderer. This property is typed as IUIComponent so that drop-ins like Label and TextInput don't have to have dependencies on TreeMap and all of its dependencies.
| toolTip | property |
public var toolTip:String
The alternative textual representation of the item data, based on the treemap class'
itemToToolTip() method.
| uid | property |
public var uid:StringThe unique identifier for this item.
| weight | property |
public var weight:Number
The weight representation of the item data, based on the treemap class'
itemToWeight() method.
| TreeMapNodeData | () | constructor |
public function TreeMapNodeData(label:String, weight:Number, color:uint, toolTip:String, uid:String, owner:IUIComponent)Constructor.
Parameterslabel:String — The textual representation of the item data.
|
|
weight:Number — The weight value of the item data
|
|
color:uint — The color value of the item data
|
|
toolTip:String — The alternative textual representation of the item data
|
|
uid:String — A unique identifier.
|
|
owner:IUIComponent — A reference to the treemap control.
|