Flex

Members
  • Content count

    6
  • Joined

  • Last visited

Everything posted by Flex

  1. Hi, I'd like to have a multi-series stacked chart 3D in Flex. (showing two StackedColumn3D charts) I've found a similar solution (the link below), however I can't find anything like MSStackedColumn2D.swf or MSStackedColumn3D.swf in FusionCharts folder. http://www.fusioncharts.com/docs/DataFormats/JSON/MSStacked.html I am wondering if these chart types are not supported in the version for Flex. If so, is there any way to implement this in Flex? I'd appreciate any input for this. Regards.
  2. Hi, As described in this topic: http://forum.fusioncharts.com/topic/3743-buttons-and-slider-for-2d-and-rotation-controls/page__p__13623__hl__%2Benable+%2Brotation+%2Blinks+%2Btogether__fromsearch__1#entry13623 I am wondering if can have external links to "Enable Rotation" and "Enable Links" outside of the chart not using the context menu. I know it's not supported, but would it be possible to modify the source code to add this feature if I purchase FusionCharts for Flex? Thanks very much in advance.
  3. Enable Rotation/links For Pie Chart

    Thank you very much for your reply. Will there be a blink when I re-render the chart? And I suppose if there is a lot of data, it will take some time to re-display the chart. Am I right?
  4. Hi, I know only click event handler can be added to the charts (I am using the version for Flex if that matters). If I purchase FusionCharts for Flex, will I be able to modify the source code to add an event handler for item roll over or mouse hover? Thanks millions in advance. Regards
  5. Hi, I am testing out Fusion Charts to see if we can use in our product. But I am having troubles. I downloaded Fusion Charts evaluation version for Flex, and added "FusionChartsFlex/Charts/FlashBuilder4_SWC/FusionCharts.swc" to Flex Build Path: (Project -> Properties -> Flex Build Path tab -> Add SWC) And then I created a MXML Application and copied this code below from FusionCharts tutorial and ran it. But when I ran it, the chart is not displaying at all. I haven't got any clue why this is happening. I'd appreciate any help for this. <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" xmlns:ns1="com.fusioncharts.components.*"> <ns1:FusionCharts x="10" y="10" FCChartType="Column3D"> <ns1:FCChartData FCData="{chartData}" FCParams="{chartParams}"/> </ns1:FusionCharts> <ns1:FusionCharts FCUseDefaultData="true"> </ns1:FusionCharts> <mx:Script> <![CDATA[ import mx.collections.ArrayCollection; //Create an ArrayCollection object as a data source for chart [bindable] private var chartData:ArrayCollection=new ArrayCollection([ { label:'Jan', value:'17400' }, { label:'Feb', value:'19800' }, { label:'Mar', value:'21800' }, { label:'Apr', value:'23000' }, { label:'May', value:'29000' }, { label:'Jun', value:'27600' } ]); //Create an ArrayCollection object as a data source for chart parameters [bindable] private var chartParams:ArrayCollection=new ArrayCollection([ { caption:'Half Yearly Sales Summary' }, { subcaption:'For the year 2008 - First Half' }, { xAxisName:'Month' }, { yAxisName:'Sales' }, { numberPrefix:'$' } ]); ]]> </mx:Script> </mx:Application>
  6. I fixed this by coping FusionCharts and FusionWidgets folders into my Flex src folder. Apparently FusionCharts load their SWF files when compile MXML and dynamically add to the application.