Using ArrayCollection Of Verbose MXML Objects for ColumnChart : Column Chart Data « Chart « Flex

Home
Flex
1.Chart
2.Components
3.Container
4.Data Model
5.Development
6.Effects
7.Event
8.Graphics
9.Grid
10.Style
Flex » Chart » Column Chart DataScreenshots 
Using ArrayCollection Of Verbose MXML Objects for ColumnChart
Using ArrayCollection Of Verbose MXML Objects for ColumnChart
           

<!--
Code from Flex 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 
  (1proper attribution to Adobe is given as the owner of the user guide; and 
  (2any 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/ArrayCollectionOfVerboseMXMLObjects.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:Declarations>
        <s:ArrayCollection id="expenses">
            <fx:Object>
                <fx:Month>January</fx:Month>
                <fx:Profit>2000</fx:Profit>
                <fx:Expenses>1500</fx:Expenses>
                <fx:Amount>450</fx:Amount>
            </fx:Object>
            <fx:Object>
                <fx:Month>February</fx:Month>
                <fx:Profit>1000</fx:Profit>
                <fx:Expenses>200</fx:Expenses>
                <fx:Amount>600</fx:Amount>
            </fx:Object>
            <fx:Object>
                <fx:Month>March</fx:Month>
                <fx:Profit>1500</fx:Profit>
                <fx:Expenses>500</fx:Expenses>
                <fx:Amount>300</fx:Amount>
            </fx:Object>
            <fx:Object>
                <fx:Month>April</fx:Month>
                <fx:Profit>500</fx:Profit>
                <fx:Expenses>300</fx:Expenses>
                <fx:Amount>300</fx:Amount>
            </fx:Object>
            <fx:Object>
                <fx:Month>May</fx:Month>
                <fx:Profit>1000</fx:Profit>
                <fx:Expenses>450</fx:Expenses>
                <fx:Amount>250</fx:Amount>
            </fx:Object>
            <fx:Object>
                <fx:Month>June</fx:Month>
                <fx:Profit>2000</fx:Profit>
                <fx:Expenses>500</fx:Expenses>
                <fx:Amount>700</fx:Amount>
            </fx:Object>
        </s:ArrayCollection>
    </fx:Declarations>
    <s:layout>
        <s:VerticalLayout />
    </s:layout>
    <s:Panel title="Column Chart">
        <s:layout>
            <s:VerticalLayout />
        </s:layout>
        <mx:ColumnChart id="myChart" dataProvider="{expenses}"
            showDataTips="true">
            <mx:horizontalAxis>
                <mx:CategoryAxis dataProvider="{expenses}"
                    categoryField="Month" />
            </mx:horizontalAxis>
            <mx:series>
                <mx:ColumnSeries xField="Month" yField="Profit"
                    displayName="Profit" />
                <mx:ColumnSeries xField="Month" yField="Expenses"
                    displayName="Expenses" />
            </mx:series>
        </mx:ColumnChart>
        <mx:Legend dataProvider="{myChart}" />
    </s:Panel>
</s:Application>

   
    
    
    
    
    
    
    
    
    
    
  
Related examples in the same category
1.creates data labels for each of the columns in the ColumnChart control:creates data labels for each of the columns in the ColumnChart control:
2.Set the value of a ColumnChart control's dataTipMode property to multiple:Set the value of a ColumnChart control's dataTipMode property to multiple:
3.Use these methods to cycle through the data points in a ColumnChart control.Use these methods to cycle through the data points in a ColumnChart control.
4.Add a CartesianDataCanvas as an annotation element to the ColumnChart control.Add a CartesianDataCanvas as an annotation element to the ColumnChart control.
5.Use the addDataChild() method to add children to the data canvas. It adds labels to each of the columns that you select in the ColumnChart control.Use the addDataChild() method to add children to the data canvas. It adds labels to each of the columns that you select in the ColumnChart control.
6.Define a data provider on the chart controlDefine a data provider on the chart control
7.Compare yField in data provider when it fills each chart itemCompare yField in data provider when it fills each chart item
8.Data Tip Function for chartData Tip Function for chart
ww___w___.___j___ava_2s__.__co__m___ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.