Anu@Com

Members
  • Content count

    5
  • Joined

  • Last visited

About Anu@Com

  • Rank
    Forum Newbie
  1. Hi, I am using Fusion charts with Flex. I form a xml data and assign it to chart.FCDataXML . The issue I observe is many times I don't see the graphs coming up. But if I clear the browser cache and reload, the graph comes up. As per the topics discussed on this forum I could see someone speaking about xml cache to be cleared. But all suggestion was based on DataURL format. I would like to know if any option is available to clear cache while setting the xml to chart.FCDataXML. Or any other suggestion that would resolve this problem for me.
  2. Display Details Of Chart

    Thanks Sanjukta !!
  3. Display Details Of Chart

    Hi, I am using fusionchart with flex and would like to know if there is any option to find the max/min/average value in the chart displayed. I want to display this info just like legends displayed. Is this option available in fusion charts?
  4. Drill Down Fusion Chart In Flex

    i have downloaded the trial version. Shall get back on this soon. Thanks!!
  5. Hi, I am trying to display fusion chart column2D chart using flex and drill down. i refered to this post http://docs.fusioncharts.com/flex/charts/Contents/DrillDown/FlexLinks.html In this the link is mentioned to trigger a function. <set label='Hong Kong' value='235' link='E-my_func,Hong Kong,235'/> This is the peice of code I used for testing this functionality, but failed to view the alert <?xml version="1.0" encoding="utf-8"?><s:SkinnableContainer xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/mx" xmlns:components="com.fusioncharts.components.*"> <fx:Script> <![CDATA[ import mx.controls.Alert; var str:String = "<chart id='cht_data1' > <set label='January' value='250' link='E-my_func,testing,1'/> </chart>" ; var test:XML = new XML(str); public function my_func(linkParam:String):void { Alert.show("hi"); } ]]> </fx:Script> <components:FusionCharts id="myChart" FCChartType="Column2D" width="500" height="300" FCDataXML="{test}"/> </s:SkinnableContainer> Please help in using drill down feature in flex code.