Hi, I just have the Flex SDK in my system... (I don't have the Flex buider though...)
And when I am trying to execute the below snippet, <?xml version="1.0"?> <!-- charts/BasicAreaOneSeries.mxml --> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"> <mx:Script><![CDATA[ import mx.collections.ArrayCollection; [Bindable] public var expenses:ArrayCollection = new ArrayCollection([ {Month:"Jan", Profit:2000, Expenses:1500, Amount:450}, {Month:"Feb", Profit:1000, Expenses:200, Amount:600}, {Month:"Mar", Profit:1500, Expenses:500, Amount:300} ]); ]]></mx:Script> <mx:Panel title="Area Chart"> <mx:AreaChart id="myChart" dataProvider="{expenses}" showDataTips="true"> <mx:horizontalAxis> <mx:CategoryAxis dataProvider="{expenses}" categoryField="Month" /> </mx:horizontalAxis> <mx:series> <mx:AreaSeries yField="Profit" displayName="Profit" /> </mx:series> </mx:AreaChart> <mx:Legend dataProvider="{myChart}"/> </mx:Panel> </mx:Application> It displays me the following error, C:\dav\CF\chart_ex.mxml(14): Error: Type was not found or was not a compile-time constant: AreaChart. That means Flex SDK doesn't have the Charting support?... Is there a way I can get this program running using my SDK?... Thanks, David R --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Flex India Community" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/flex_india?hl=en -~----------~----~----~----~------~----~------~--~---

