Chart Flex


    
    xmlns:mx="library://ns.adobe.com/flex/mx" xmlns:s="library://ns.adobe.com/flex/spark"
     height="600">
  
    
    import mx.collections.ArrayCollection;
        
    [Bindable]
    private var goog:ArrayCollection = new ArrayCollection( [
    {date:"1/1/2001",open:42.57,high:43.08,low:42.08,close:42.75},
    {date:"1/1/2002",open:42.89,high:43.5,low:42.61,close:43.19},
    {date:"1/1/2003",open:43.19,high:43.31,low:42.77,close:43.22}
            ]);
  
  

    
        
    

    
        
            
        

                    dataProvider="{goog}" showDataTips="true" height="400" width="400">
            
                
            

            
                                    highField="high" lowField="low" closeField="close" displayName="TICKER"
                    xField="date" />