Data Model Flex




    
        
        import mx.graphics.SolidColor;
        import mx.collections.ArrayCollection;
        [Bindable]
        public var expenses:ArrayCollection = new ArrayCollection([
            {Month:"Jan", Profit:2000, Expenses:1500},
            {Month:"Feb", Profit:1000, Expenses:200},
            {Month:"Mar", Profit:1500, Expenses:500}
            ]);
        // Make all fills partially transparent by
        // setting the alpha to .5.
        [Bindable]
        private var warmColorsArray:Array = new Array(
            new SolidColor(0xFF0033, .5),
            new SolidColor(0xFF0066, .5),
            new SolidColor(0xFF0099, .5)
            );
        [Bindable]
        private var coolColorsArray:Array = new Array(
            new SolidColor(0x3333CC, .5),
            new SolidColor(0x3366CC, .5),
            new SolidColor(0x3399CC, .5)
            );
      
    

    
        
            
                                    categoryField="Month" />
            

            
                                    displayName="Profit" fills="{warmColorsArray}">
                
                                    displayName="Expenses" fills="{coolColorsArray}">