Package | mx.charts |
Class | public class AxisLabel |
Inheritance | AxisLabel Object |
Language Version: | ActionScript 3.0 |
Product Version: | Flex 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
See also
Public Properties
Property | Defined By | ||
---|---|---|---|
constructor : Object
A reference to the class object or constructor function for a given object instance. | Object | ||
position : Number
The position, specified as a value between 0 and 1,
of the label along the axis. | AxisLabel | ||
prototype : Object [static]
A reference to the prototype object of a class or function object. | Object | ||
text : String
The text label that is actually rendered along the axis. | AxisLabel | ||
value : Object
The value that the label represents. | AxisLabel |
Public Methods
Method | Defined By | ||
---|---|---|---|
Constructor. | AxisLabel | ||
Indicates whether an object has a specified property defined. | Object | ||
Indicates whether an instance of the Object class is in the prototype chain of the object specified
as the parameter. | Object | ||
Indicates whether the specified property exists and is enumerable. | Object | ||
Sets the availability of a dynamic property for loop operations. | Object | ||
Returns the string representation of this object, formatted according to locale-specific conventions. | Object | ||
Returns the string representation of the specified object. | Object | ||
Returns the primitive value of the specified object. | Object |
Property Detail
position | property |
public var position:Number
Language Version: | ActionScript 3.0 |
Product Version: | Flex 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
The position, specified as a value between 0 and 1, of the label along the axis. An AxisLabel with a position of 0 is placed at the minimum value of the axis, while an AxisLabel with a position of 1 is placed at the maximum value of the axis.
text | property |
public var text:String
Language Version: | ActionScript 3.0 |
Product Version: | Flex 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
The text label that is actually rendered along the axis.
value | property |
public var value:Object
Language Version: | ActionScript 3.0 |
Product Version: | Flex 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
The value that the label represents. The particular type of the value property is specific to the axis that generated the label. For example, a LinearAxis might generate numeric values, while a DateTimeAxis might generate Date instance values.
Constructor Detail
AxisLabel | () | Constructor |
public function AxisLabel(position:Number = 0, value:Object = null, text:String = null)
Language Version: | ActionScript 3.0 |
Product Version: | Flex 3 |
Runtime Versions: | Flash Player 9, AIR 1.1 |
Constructor.
Parametersposition:Number (default = 0 ) — The position, specified as a value between 0 and 1,
of the label along the axis.
| |
value:Object (default = null ) — The value the label represents.
| |
text:String (default = null ) — The text label that is actually rendered along the axis.
|
Fri Mar 19 2010, 02:45 AM -07:00