| Package | fr.kapit.components.treemap |
| Class | public class TreeMapColorFilter |
| Inheritance | TreeMapColorFilter fr.kapit.components.treemap.TreeMapFilter |
| Property | Defined by | ||
|---|---|---|---|
| labelFunction : Function
A function used to customize labels.
| TreeMapColorFilter | ||
| leftValue : Number
The value associated with the left arrow.
| TreeMapColorFilter | ||
| maxValue : Number
Indicates the minimum value on the filter.
| TreeMapColorFilter | ||
| minValue : Number
Indicates the minimum value on the filter.
| TreeMapColorFilter | ||
| rightValue : Number
The value associated with the left arrow.
| TreeMapColorFilter | ||
| treeMap : TreeMap
The TreeMap associated with this TreeMapColorFilter.
| TreeMapColorFilter | ||
| Method | Defined by | ||
|---|---|---|---|
|
Constructor.
| TreeMapColorFilter | ||
| labelFunction | property |
labelFunction:Function [read-write]
A function used to customize labels.
It must have the following signature : labelFunction(n:Number):String.
public function get labelFunction():Function
public function set labelFunction(value:Function):void
| leftValue | property |
leftValue:Number [read-write]
The value associated with the left arrow.
The leftValue can be modified programatically. But it will default to minValue
if the new value is lower than minValue and to maxValue if the new value is greater than maxValue.
It also changes the rightValue if the new value is greater than rightValue in order to keep the property leftValue <= rightValue.
public function get leftValue():Number
public function set leftValue(value:Number):void
| maxValue | property |
maxValue:Number [read-write]Indicates the minimum value on the filter.
Implementation public function get maxValue():Number
public function set maxValue(value:Number):void
| minValue | property |
minValue:Number [read-write]Indicates the minimum value on the filter.
Implementation public function get minValue():Number
public function set minValue(value:Number):void
| rightValue | property |
rightValue:Number [read-write]
The value associated with the left arrow.
The rightValue can be modified programatically. But it will default to minValue
if the new value is lower than minValue and to maxValue if the new value is greater than maxValue.
It also changes the leftValue if the new value is lower than leftValue in order to keep the property leftValue <= rightValue.
public function get rightValue():Number
public function set rightValue(value:Number):void
| treeMap | property |
treeMap:TreeMap [read-write]The TreeMap associated with this TreeMapColorFilter.
Implementation public function get treeMap():TreeMap
public function set treeMap(value:TreeMap):void
| TreeMapColorFilter | () | constructor |
public function TreeMapColorFilter()Constructor.