| Package | com.yahoo.astra.fl.charts.series | 
| Class | public class CartesianSeries | 
| Inheritance | CartesianSeries  Series  fl.core.UIComponent | 
| Implements | ILegendItemSeries | 
| Subclasses | BarSeries, ColumnSeries, LineSeries | 
CartesianSeries object shouldn't be
  instantiated directly. Instead, a subclass with a concrete implementation
  should be used.
  
  
| Property | Defined by | ||
|---|---|---|---|
| axis : String = "primary" 
   Indicates whether the series is bound to a primary or secondary axis
    | CartesianSeries | ||
|  | chart : Object 
   The chart in which this series appears. | Series | |
|  | dataProvider : Object 
   The data provider for this series. | Series | |
|  | dataTipFunction : Function 
   DataTip Function for series
    | Series | |
|  | displayName : String 
   The name of the series as it appears to the user. | Series | |
| horizontalField : String 
   Defines the property to access when determining the x value. | CartesianSeries | ||
|  | itemRenderer : Object 
         The class used to instantiate item renderers. | Series | |
|  | legendLabelFunction : Function 
   If defined, the chart will call the input function to determine the text displayed in 
   in the chart's legend. | Series | |
|  | length : int 
   The number of items in the series. | Series | |
| showInLegend : Boolean 
   When a Legend is present, indicates whether the series will show in the legend. | CartesianSeries | ||
| verticalField : String 
   Defines the property to access when determining the y value. | CartesianSeries | ||
| Method | Defined by | ||
|---|---|---|---|
| 
CartesianSeries(data:Object = null) 
   Constructor. | CartesianSeries | ||
|  | 
   Creates a copy of the ISeries object. | Series | |
| 
   Creates a LegendItemData object to pass to the chart's legend. | CartesianSeries | ||
|  | 
itemRendererToIndex(renderer:ISeriesItemRenderer):int 
   Returns the index of an item renderer. | Series | |
|  | 
itemToItemRenderer(item:Object):ISeriesItemRenderer
 
   Converts an item to its corresponding item renderer. | Series | |
| Style | Description | Defined by | ||
|---|---|---|---|---|
|  | Type: int The duration for animations that occur on data changes. | Series | ||
|  | Type: Function The easing function for animations that occur on data changes. | Series | ||
|  | Type: Boolean If true, data changes will be displayed with animations. | Series | ||
|  | Type: Number The alpha value from 0.0 to 1.0 to use for drawing the border of markers. | Series | ||
|  | Type: uint The border color used by programatic skins in this series. | Series | ||
|  | Type: uint The base color used by objects displayed in this series. | Series | ||
|  | Type: Number The alpha value from 0.0 to 1.0 to use for drawing the fills of markers. | Series | ||
|  | Type: uint The fill color used by programatic skins in this series. | Series | ||
|  | Type: Number The alpha value from 0.0 to 1.0 to use for drawing the markers. | Series | ||
|  | Type: Number The size, in pixels, of each marker. | Series | ||
|  | Type: Class The Class used to instantiate each marker's skin. | Series | ||
| 
visibility
 | Type: String Indicates the value of the visible property. A value of visibleindicatestrue.
  A value ofhiddenindicatesfalse. | CartesianSeries | ||
| axis | property | 
public var axis:String = "primary"Indicates whether the series is bound to a primary or secondary axis
| horizontalField | property | 
horizontalField:String  [read-write]Defines the property to access when determining the x value.
Implementation    public function get horizontalField():String
    public function set horizontalField(value:String):void
| showInLegend | property | 
showInLegend:Boolean  [read-write]When a Legend is present, indicates whether the series will show in the legend.
Implementation    public function get showInLegend():Boolean
    public function set showInLegend(value:Boolean):void
| verticalField | property | 
verticalField:String  [read-write]Defines the property to access when determining the y value.
Implementation    public function get verticalField():String
    public function set verticalField(value:String):void
| CartesianSeries | () | constructor | 
public function CartesianSeries(data:Object = null)Constructor.
Parameters| data:Object(default =null) | 
| createLegendItemData | () | method | 
public function createLegendItemData():LegendItemDataCreates a LegendItemData object to pass to the chart's legend.
Returns| LegendItemData |