Define slideIn effect that plays every time the user adds a data : Slide Effect « Effects « 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 » Effects » Slide EffectScreenshots 
Define slideIn effect that plays every time the user adds a data
Define slideIn effect that plays every time the user adds a data
   

<!--
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/ApplyEffectsAsStyles.mxml -->
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
    creationComplete="init()">
    <mx:Script>
        import mx.collections.ArrayCollection;
        import mx.charts.effects.SeriesInterpolate;
        [Bindable]
        public var items:ArrayCollection = new ArrayCollection([
            {item: 2000},
            {item: 3300},
            {item: 3000},
            {item: 2100},
            {item: 3200}
            ]);
        public var rearrangeData:SeriesInterpolate;
        public function init():void {
            rearrangeData = new SeriesInterpolate();
            rearrangeData.duration = 1000;
            rearrangeData.minimumElementDuration = 200;
            rearrangeData.elementOffset = 0;
            // Apply the effect as a style.
            mySeries.setStyle("showDataEffect""rearrangeData");
        }
        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>
    <mx:Panel title="Column Chart with Series Interpolate Effect">
        <mx:ColumnChart id="myChart" dataProvider="{items}">
            <mx:series>
                <mx:ColumnSeries id="mySeries" yField="item"
                    displayName="Quantity" showDataEffect="rearrangeData" />
            </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.Use SeriesSlide effect to make the data slide in and outUse SeriesSlide effect to make the data slide in and out
2.slideDown effectslideDown effect
3.seriesIn and seriesOut effects to slide the columns in and outseriesIn and seriesOut effects to slide the columns in and out
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.