Packagecom.yahoo.astra.fl.charts.axes
Interfacepublic interface IOriginAxis extends IAxis
ImplementorsNumericAxis

An axis with an origin.



Public Properties
 PropertyDefined by
 Inheritedchart : IChart
The chart in which this axis appears.
IAxis
 InheriteddataProvider : Array
Data used in determining the axis scale
IAxis
 InheritedlabelFunction : Function
A function may be set to determine the text value of the labels.
IAxis
 InheritedlabelSpacing : Number
The space, in pixels, between labels on an axis.
IAxis
 InheritedmaxLabelHeight : Number
Gets or sets the maximum width of a label
IAxis
 InheritedmaxLabelWidth : Number
Gets or sets the maximum width of a label
IAxis
  origin : Object
[read-only] Returns the value of the origin.
IOriginAxis
 Inheritedrenderer : IAxisRenderer
The visual renderer associated with this axis.
IAxis
 Inheritedreverse : Boolean
Sets the direction of the labels and other visual objects along the axis.
IAxis
 Inheritedtitle : String
The text that will appear next to the axis to indicate information about the data that it displays.
IAxis
Public Methods
 MethodDefined by
 Inherited
getMaxLabel():String
Returns the maximum string length of a label on the axis.
IAxis
 Inherited
updateScale():void
Determines the axis scale based on the input data set.
IAxis
 Inherited
valueToLabel(value:Object):String
Converts a value on the axis to formatted label text.
IAxis
 Inherited
valueToLocal(value:Object):Number
Calculates the position of a data point along the axis.
IAxis
Property detail
originproperty
origin:Object  [read-only]

Returns the value of the origin. This is not the position of the origin. To get the origin's position, pass the origin value to valueToLocal(). Note: This value may not be the true origin value. It may be a minimum or maximum value if the actual origin is not visible.

Implementation
    public function get origin():Object

See also