uienvy

Members
  • Content count

    3
  • Joined

  • Last visited

About uienvy

  • Rank
    Forum Newbie
  1. Hi there. I am trying to use, FusionCharts, FusionWidgets and FusionMaps all together and render them in JavaScript only. However, they each require the FusionCharts.js file be loaded from each of their respective directories. I keep getting /FusionCharts/FusionCharts.HC.Widgets.js 404 (Not Found) and these errors: "Invalid value for <rect> attribute width="NaN"" Can you please help? I am using FusionCharts Enterprise version 3.2.2, FusionWidgets Enterprise version 3.2 and FusionMaps Enterprise version 3.1 Thank you
  2. Render Maps And Charts On Event

    Hi Angshu, Actually I figured out the problem. This does work but not with percentage values for the height and width of the FusionMap. Using this code: function smartSearchMap(){ var map = new FusionMaps('/FusionMaps/FCMap_USA.swf', 'smartSearchMap', '500', '400'); map.setDataURL('/data/fusionMap.xml'); map.render('smartSearchMap'); }; $('#my_button').click(function(){ smartSearchMap(); }); This works great! Do you know when the next version of FusionMaps supporting HTML5 and JS would be available? Thank you for your help!
  3. Hi FusionCharts! I am having trouble rendering a FusionMap (or FusionChart) on a click event using JavaScript. Here is my example code: function smartSearchMap(){ var map = new FusionMaps('/FusionMaps/FCMap_USA.swf', 'smartSearchMap', '100%', '100%'); map.setDataXML('/data/FusionMap.xml'); map.render('smartSearchMap'); }; $('#my_button').click(function(){ smartSearchMap(); }); Can someone please help me on this one? I am stuck...didn't think this would be too difficult!