Define the properties of the high-low lines and candlestick borders by using a Stroke class : Candlestick Chart « Chart « Flex






Define the properties of the high-low lines and candlestick borders by using a Stroke class

Define the properties of the high-low lines and candlestick borders by using a Stroke class
        

<!--
Code from Flex 4 Documentation "Using Adobe Flex 4".

This user guide is licensed for use under the terms of the Creative Commons Attribution 
Non-Commercial 3.0 License. 

This License allows users to copy, distribute, and transmit the user guide for noncommercial 
purposes only so long as 
  (1) proper attribution to Adobe is given as the owner of the user guide; and 
  (2) any reuse or distribution of the user guide contains a notice that use of the user guide is governed by these terms. 
The best way to provide notice is to include the following link. 
To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/3.0/

-->



    <!-- charts/CandlestickStyles.mxml -->
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
    xmlns:mx="library://ns.adobe.com/flex/mx" xmlns:s="library://ns.adobe.com/flex/spark"
     height="600">
  <fx:Script>
    
    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}
            ]);
  
  </fx:Script>
    <s:layout>
        <s:VerticalLayout />
    </s:layout>
    <s:Panel title="Candlestick Chart">
        <s:layout>
            <s:VerticalLayout />
        </s:layout>
        <mx:CandlestickChart id="mychart"
            dataProvider="{goog}" showDataTips="true"
            height="400" width="400">
            <mx:verticalAxis>
                <mx:LinearAxis title="linear axis" minimum="40"
                    maximum="50" />
            </mx:verticalAxis>
            <mx:horizontalAxis>
                <mx:DateTimeAxis dataUnits="days" />
            </mx:horizontalAxis>
            <mx:series>
                <mx:CandlestickSeries openField="open"
                    highField="high" lowField="low" closeField="close" displayName="TICKER"
                    xField="date">
                    <mx:fill>
                        <mx:SolidColor color="green" />
                    </mx:fill>
                    <mx:declineFill>
                        <mx:SolidColor color="red" />
                    </mx:declineFill>
                    <mx:stroke>
                        <mx:SolidColorStroke weight="1" color="black" />
                    </mx:stroke>
                </mx:CandlestickSeries>
            </mx:series>
        </mx:CandlestickChart>
        <mx:Legend dataProvider="{mychart}" />
    </s:Panel>
</s:Application>

   
    
    
    
    
    
    
    
  








Related examples in the same category

1.Candlestick chart displaying stock pricesCandlestick chart displaying stock prices
2.Candlestick Chart Heigh field and Low fieldCandlestick Chart Heigh field and Low field
3.Axis for Candlestick ChartAxis for Candlestick Chart
4.Legend for Candlestick ChartLegend for Candlestick Chart
5.Candlestick Chart Axis Label Rotation ExampleCandlestick Chart Axis Label Rotation Example
6.Setup CandlestickChartSetup CandlestickChart
7.CandlestickChartCandlestickChart
8.Create a CandlestickChart controlCreate a CandlestickChart control