Mega Code Archive

 
Categories / Flex / Style
 

The following example sets styles by using CSS on the Legend control

<!-- 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/FormattedLegend.mxml --> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">     <mx:Style>         Legend { labelPlacement:left; markerHeight:30; markerWidth:30; }     </mx:Style>     <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>