Create a Legend control is to bind a chart to it by using the dataProvider property : dataProvider « Data Model « Flex






Create a Legend control is to bind a chart to it by using the dataProvider property

Create a Legend control is to bind a chart to it by using the dataProvider property
          

<!--
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/LegendNamedSeries.mxml -->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
    <mx:Script>
        import mx.collections.ArrayCollection; 
        [Bindable] public var expenses:ArrayCollection = new ArrayCollection([ 
           {Expense:"Taxes",Amount:2000, Cost:321,Discount:131}, 
           {Expense:"Rent", Amount:1000, Cost:95, Discount:313}, 
           {Expense:"Bills", Amount:100, Cost:478,Discount:841} ]);
    </mx:Script>
    <mx:Panel title="Bar Chart with Legend">
        <mx:BarChart id="myChart" dataProvider="{expenses}">
            <mx:verticalAxis>
                <mx:CategoryAxis dataProvider="{expenses}"
                    categoryField="Expense" />
            </mx:verticalAxis>
            <mx:series>
                <mx:BarSeries xField="Amount" displayName="Amount (in $USD)" />
                <mx:BarSeries xField="Cost" displayName="Cost (in $USD)" />
                <mx:BarSeries xField="Discount"
                    displayName="Discount (in $USD)" />
            </mx:series>
        </mx:BarChart>
        <mx:Legend dataProvider="{myChart}" />
    </mx:Panel>
</mx:Application>

   
    
    
    
    
    
    
    
    
    
  








Related examples in the same category

1.Script section and dataProvider sectionScript section and dataProvider section
2.Set data for TabBar using and Set data for TabBar using <mx:dataProvider> and <mx:TabBar>
3.populating dataProvider by using the populating dataProvider by using the <mx:dataProvider/>
4.uses event handlers to add and remove container children by calling addItem()/removeItemAt() on dataProvider propertyuses event handlers to add and remove container children by calling addItem()/removeItemAt() on dataProvider property
5.Creating a TabBar control, use and tags to specify the text for each tabCreating a TabBar control, use <mx:dataProvider> and <fx:String> tags to specify the text for each tab
6.MultipleDataProviders.mxmlMultipleDataProviders.mxml
7.Change Service DataProviderChange Service DataProvider
8.dataProvider and DataGrid
9.A custom function to convert new data items to the format required by the data providerA custom function to convert new data items to the format required by the data provider