Packageorg.apache.flex.charts.core
Interfacepublic interface IVerticalAxisBead extends IAxisBead, IBead
Implementors VerticalCategoryAxisBead, VerticalLinearAxisBead

Language Version : ActionScript 3.0
Product Version : FlexJS 0.0
Runtime Versions : Flash Player 10.2, AIR 2.6

The IHorizontalAxisBead interface is a marker for any class that draws a verical axis. The YAxisBead is an example that implements this interface.



Public Properties
 PropertyDefined By
 InheritedaxisGroup : IAxisGroup
The group space to use as the drawing area for the axis parts (lines, ticks, labels, etc.).
IAxisBead
 InheritedaxisStroke : IStroke
The stroke used for the axis line
IAxisBead
  axisWidth : Number
The overall width of the horizontal axis.
IVerticalAxisBead
  maximum : Number
[read-only] The explicit maximum value being represented by this axis.
IVerticalAxisBead
  minimum : Number
[read-only] The explicit minimum value being represented by this axis.
IVerticalAxisBead
 Inheritedplacement : String
The placement of the axis with respect to the chart area.
IAxisBead
 Inheritedstrand : IStrand
[write-only] The host component for this bead.
IBead
 InheritedtickStroke : IStroke
The stroked used for the tick marks
IAxisBead
Property Detail
axisWidthproperty
axisWidth:Number

Language Version : ActionScript 3.0
Product Version : FlexJS 0.0
Runtime Versions : Flash Player 10.2, AIR 2.6

The overall width of the horizontal axis.


Implementation
    public function get axisWidth():Number
    public function set axisWidth(value:Number):void
maximumproperty 
maximum:Number  [read-only]

Language Version : ActionScript 3.0
Product Version : FlexJS 0.0
Runtime Versions : Flash Player 10.2, AIR 2.6

The explicit maximum value being represented by this axis. If this value is not set, NaN is returned.


Implementation
    public function get maximum():Number
minimumproperty 
minimum:Number  [read-only]

Language Version : ActionScript 3.0
Product Version : FlexJS 0.0
Runtime Versions : Flash Player 10.2, AIR 2.6

The explicit minimum value being represented by this axis. If this value is not set, 0 is returned.


Implementation
    public function get minimum():Number