Trigger of the data effects : Effect Trigger « Effects « Flex






Trigger of the data effects

Trigger of the data effects
   
<!--
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/AddItemEffect.mxml -->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
    <mx:Script>
        import mx.collections.ArrayCollection;
        [Bindable]
        public var items:ArrayCollection = new ArrayCollection([
            {item: 2000},
            {item: 3300},
            {item: 3000},
            {item: 2100},
            {item: 3200}
            ]);
        public function addDataItem():void {
            // Add a randomly generated value to
            // the data provider.
            var n:Number = Math.random() * 3000;
            var o:Object = {item: n};
            items.addItem(o);
        }
      </mx:Script>
    <!-- Define chart effect -->
    <mx:SeriesSlide id="slideIn" duration="1000" direction="up" />
    <mx:Panel title="Column Chart with Series Effect">
        <mx:ColumnChart id="myChart" dataProvider="{items}">
            <mx:series>
                <mx:ColumnSeries yField="item" displayName="Quantity"
                    showDataEffect="slideIn" />
            </mx:series>
        </mx:ColumnChart>
    </mx:Panel>
    <mx:Button id="b1" click="addDataItem()" label="Add Data Item" />

</mx:Application>

   
    
    
  








Related examples in the same category

1.An Effect Trigger ApplicationAn Effect Trigger Application
2.Effect Trigger In ActionScriptEffect Trigger In ActionScript