﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>FusionCharts Forum / Bug Reports / FusionMaps v3 / Product Forums </title><generator>InstantForum.NET v4.1.4</generator><description>FusionCharts Forum</description><link>http://www.fusioncharts.com/forum/</link><webMaster>support@fusioncharts.com</webMaster><lastBuildDate>Mon, 22 Mar 2010 02:10:43 GMT</lastBuildDate><ttl>20</ttl><item><title>Fusion maps User control</title><link>http://www.fusioncharts.com/forum/Topic23352-12-1.aspx</link><description>When i design the fusion maps in aspx it works great but when i try this using an user control am getting an error saying &lt;STRONG&gt;"FusionMaps"&lt;/STRONG&gt; is undefined. I have most of my time in getting a solution for this.&lt;/P&gt;&lt;P&gt;If anybody knows a solution for this please let me know......</description><pubDate>Sat, 30 Jan 2010 04:27:14 GMT</pubDate><dc:creator>muguram</dc:creator></item><item><title>Javascript Error When Using ASP.Net RenderMapHTML and IE 7</title><link>http://www.fusioncharts.com/forum/Topic11250-12-1.aspx</link><description>I've run into a javascript error when using Flash Maps in an ASP.Net page.  If you take the C# example BasicArray.aspx, go into the code behind file and change the line that starts with:&lt;/P&gt;&lt;P&gt;string mapHTML=FusionMaps.RenderMap&lt;/P&gt;&lt;P&gt;to &lt;/P&gt;&lt;P&gt;string mapHTML=FusionMaps.RenderMapHTML&lt;/P&gt;&lt;P&gt;When you view the page in IE you will get an Error On Page message in the lower left corner of IE.  You will not get that error if you are using Firefox or Chrome.&lt;/P&gt;&lt;P&gt;The message is:&lt;/P&gt;&lt;P&gt;Line 1&lt;/P&gt;&lt;P&gt;Char 34&lt;/P&gt;&lt;P&gt;Error: Expected ')'&lt;/P&gt;&lt;P&gt;When you use the RenderMap instead of RenderMapHTML (which uses the Javascript rendering style) you will not get an error.&lt;/P&gt;&lt;P&gt;Don Demsak&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.donxml.com"&gt;www.donxml.com&lt;/A&gt;</description><pubDate>Mon, 26 Jan 2009 16:36:23 GMT</pubDate><dc:creator>DonXml</dc:creator></item><item><title>FusionMaps v3 Fails - Object doesn't support this property or method - IE 7</title><link>http://www.fusioncharts.com/forum/Topic21700-12-1.aspx</link><description>I'm a web developer working on an application that provides reports for an international consortia on reproductive health aid.  We've just introduced a beta where we have added a new mapping feature to the site ( http://rhi.rhsupplies.org - see geographic summary report "Show Map" feature ).  The feature works fine on FireFox 3.0 but fails under Internet Explorer 7.0.  We are running version 3.1 of FusionCharts and FusionMaps.  I have boiled down the problem and created a much simplified sample page (see below) that illustrates the problem.&lt;br&gt;&lt;br&gt;In IE, when map is rendered, the "Object doesn't support this property or method" error message first appears for this line of code during rendering:&lt;br&gt;&lt;br&gt;try { document.getElementById("mapdiv").SetReturnValue(__flash__toXML(SWFInfo.locateSWF("swf615053.262646243")) ); } catch (e) { document.getElementById("mapdiv").SetReturnValue("&lt;undefined/&gt;"); }&lt;br&gt;&lt;br&gt;If you click through all of the rendering errors and then click the button to save the map, you get the same error - the object returned from getMapFromId() method does not appear to support the saveAsImage() method.&lt;br&gt;&lt;br&gt;- - - - - - - - - - - - - - - - - - SAMPLE SCRIPT - - - - - - - - - - - - - - -&lt;br&gt;&lt;br&gt;&lt; !DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"&gt;&lt;br&gt;&lt; html&gt;&lt;br&gt;&lt; head&gt;&lt;br&gt;&lt; meta http-equiv=Content-Type content='text/html; charset=UTF-8'&gt;&lt;br&gt;&lt; script type='text/javascript' src='/js/FusionMaps.js'&gt;&lt;/script&gt;&lt;br&gt;&lt; script type='text/javascript'&gt;&lt;br&gt;&lt; !--&lt;br&gt;var myMap;    // the Map object &lt;br&gt;var myMapXML;&lt;br&gt;&lt;br&gt;// Button handler to exercise the SaveAsImage method on object&lt;br&gt;function saveMap() &lt;br&gt;{&lt;br&gt;	var o = getMapFromId('mapdiv');&lt;br&gt;	o.saveAsImage();&lt;br&gt;}&lt;br&gt;&lt;br&gt;// Event handler for rendering the map&lt;br&gt;function showMap()&lt;br&gt;{&lt;br&gt;   myMap = new FusionMaps('/fg_maps/FCMap_Africa.swf', 'mapdiv', '600', '500', '0', '1');&lt;br&gt;&lt;br&gt;   myMapXML = "&lt; map borderColor='C0C0C0' imageSave='1' imageSaveURL='FCExporter.jsp' showLabels='1' showShadow='0' showBevel='0' formatNumber='1' numberPrefix='$' baseFontSize='10'&gt;" + &lt;br&gt;	  "&lt; data&gt;" +&lt;br&gt;         "&lt; entity id='018' displayValue='ET' toolText='Ethiopia: $30,137,371'  value='30137371' /&gt;" +&lt;br&gt;         "&lt; entity id='023' color='FFFFFF'  displayValue='KE' toolText='Kenya'  value='' /&gt;" +&lt;br&gt;      "&lt; /data&gt;&lt; /map&gt;";&lt;br&gt;&lt;br&gt;   myMap.setDataXML(myMapXML);&lt;br&gt;&lt;br&gt;   // we always render the version that saves as JPG&lt;br&gt;   myMap.render('mapdiv');&lt;br&gt;}&lt;br&gt;//--&gt;&lt;br&gt;&lt; /script&gt;&lt;br&gt;&lt; /head&gt;&lt;br&gt;&lt;br&gt;&lt; body onload="showMap();"&gt;&lt;br&gt;&lt; input type="button" value="save as image" onclick="javascript:saveMap()"/&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt; table border='0' cellpadding='0' cellspacing='0' align='center' width='95%'&gt;&lt;br&gt;&lt; tr&gt;&lt;br&gt;   &lt; td colspan='2' align='left' width='100%'&gt;&lt;br&gt;     &lt; div id='mapdiv'&gt;&lt;br&gt;        Please wait while map is created ...&lt;br&gt;      &lt; /div&gt;&lt;br&gt;   &lt; /td&gt;&lt;br&gt;&lt; /tr&gt;&lt;br&gt;&lt; /table&gt;&lt;br&gt;&lt; /body&gt;&lt;br&gt;&lt; /html&gt;&lt;br&gt;&lt; /code&gt;</description><pubDate>Fri, 18 Dec 2009 09:52:31 GMT</pubDate><dc:creator>mdeangelis</dc:creator></item><item><title>Random Map Size in IE</title><link>http://www.fusioncharts.com/forum/Topic15471-12-1.aspx</link><description>We started working with FusionMaps recently and have a problem that I have not seen posted in the forums.  We have set up maps for the US and if we use IE 7 or IE8 to view the charts, occasionally the charts lose their proper size, the map border, and the legend.  The hot spots we have set up still work, but the size is incorrect.&lt;/P&gt;&lt;P&gt;If we use FireFox 3 to view the charts, we have no problems with these charts, this problem only seems to appear when using IE.&lt;/P&gt;&lt;P&gt;I have included an example of the map in this buggy state below.  You'll notice that when it is in this buggy state, it adds some sort of arrow in the upper right hand corner, but it doesn't appear that I can click on it or do anything with this new arrow.&lt;/P&gt;&lt;P&gt;In case this might be the helpful to resolving the problem, we are using .NET and it automatically scales the chart to a size that is 300 pixel's smaller then the user's screen resolution.  For example, if someone's monitor resolution is set to 1280x1024, then the map is auto sized in the function call to 980x724.&lt;/P&gt;&lt;P&gt; &lt;IMG src="http://www.fusioncharts.com/forum/Uploads/Images/59aea03f-7e0b-4787-8919-fd7d.jpg"&gt;</description><pubDate>Mon, 22 Jun 2009 15:25:07 GMT</pubDate><dc:creator>draker</dc:creator></item><item><title>problem with utf-8 encoding</title><link>http://www.fusioncharts.com/forum/Topic17188-12-1.aspx</link><description>I tried to change name of spain to España from the Europe2Map.as file, then recompile the fla file. But as result the special caracter "ñ" has been badly displayed.&lt;br&gt;&lt;br&gt;As a test, i found in the SpainProvincesMap.as there is a "La Coruña" wich well displayed. So i try to change antoher name to insert the "ñ" then recompile the fla file. But same problem with all special caracter.&lt;br&gt;&lt;br&gt;Thank you for help.</description><pubDate>Fri, 14 Aug 2009 05:30:48 GMT</pubDate><dc:creator>gargouri</dc:creator></item><item><title>Entity link doesn't work with JavaScript and object</title><link>http://www.fusioncharts.com/forum/Topic16568-12-1.aspx</link><description>The JavaScript in this entity works:&lt;br&gt;[code]&amp;lt;entity id='LA' value='95' link="j-alert('hello Louisiana.')" /&amp;gt;[/code]&lt;br&gt;&lt;br&gt;The JavaScript in this entity doesn't work:&lt;br&gt;[code]&amp;lt;entity id='ID' value='68' link="j-dashboard.sayHello('Idaho.')"/&amp;gt;[/code]&lt;br&gt;&lt;br&gt;I have created an object 'dashboard' which handles the creation and manipulation of some fusion charts and maps.  It is important that the functions remain in the object.&lt;br&gt;&lt;br&gt;if I were to change the link to "JavaScript:dashboard.sayHello('Idaho')" it doesn't make a difference (This is depreciated, anyway), and "j-dashboard.sayHello-Idaho" doesn't work either.&lt;br&gt;&lt;br&gt;I'm not sure what else to try. Is there something I'm missing?</description><pubDate>Tue, 21 Jul 2009 18:15:04 GMT</pubDate><dc:creator>dbladwin</dc:creator></item><item><title>Little Mistakes in Belgium Region maps</title><link>http://www.fusioncharts.com/forum/Topic16207-12-1.aspx</link><description>Hello,&lt;br&gt;&lt;br&gt;The following are not really bugs, but little spelling mistakes in the different Belgium region maps (FusionMaps_Europe_Pack).&lt;br&gt;&lt;br&gt;Following items need to be...&lt;br&gt;&lt;br&gt;EastFlanders:&lt;br&gt;BE.OV.GH -&gt; 'Gent'&lt;br&gt;BE.OV.ZL -&gt; 'Zelzate'&lt;br&gt;BE.OV.ZO -&gt; 'Zomergem'&lt;br&gt;&lt;br&gt;LimburgBGomeenten:&lt;br&gt;BE.LI.KO -&gt; 'Kortessem'&lt;br&gt;&lt;br&gt;Liege:&lt;br&gt;BE.LG.RM -&gt; 'Remicourt'&lt;br&gt;&lt;br&gt;&lt;br&gt;WestFlanders:&lt;br&gt;BE.WV.OS -&gt; 'Oostende'&lt;br&gt;BE.WV.IP -&gt; 'Ieper'&lt;br&gt;BE.WV.BG -&gt; 'Brugge'&lt;br&gt;BE.WV.KO -&gt; 'Knokke-Heist'&lt;br&gt;&lt;br&gt;VlaamsBrabant:&lt;br&gt;BE.VB.HV -&gt; Halle&lt;br&gt;&lt;br&gt;greetz,&lt;br&gt;deep.</description><pubDate>Mon, 13 Jul 2009 08:10:40 GMT</pubDate><dc:creator>deep</dc:creator></item><item><title>isHTML tags not behaving as expected in toolText</title><link>http://www.fusioncharts.com/forum/Topic15782-12-1.aspx</link><description>Although flash supports a number of [url=http://livedocs.adobe.com/flash/9.0/main/wwhelp/wwhimpl/common/html/wwhelp.htm?context=LiveDocs_Parts&amp;file=00000935.html#wp232483]HTML tags[/url], and FusionMaps supports these tags in toolText (mouseovers) when 'isHTML' is enabled, the behavior is not what is expected, especially with the &amp;lt;img&amp;gt; tag.&lt;br&gt;&lt;br&gt;Specifically:&lt;br&gt;* images do not display at all unless they are preceded by a non-space character&lt;br&gt;* images appear floating in the center of the toolText, overlapping text&lt;br&gt;* toolText is indented on the left, as if saving space for the image&lt;br&gt;* if you set alignment='right', the image floats way off to the right, far outside of the toolText box&lt;br&gt;&lt;br&gt;Also, the &amp;lt;li&amp;gt tag behaves strangely, and the &amp;lt;p&amp;gt tag seems to have no effect.  Is there some problem with the way the toolText mouseovers are set up in flash?&lt;br&gt;&lt;br&gt;Thanks,&lt;br&gt;Neil</description><pubDate>Thu, 02 Jul 2009 12:30:16 GMT</pubDate><dc:creator>nlaslett</dc:creator></item><item><title>Bug in FCMap_NewWorld.swf</title><link>http://www.fusioncharts.com/forum/Topic10942-12-1.aspx</link><description>&lt;TABLE cellSpacing=0 cellPadding=0 width="100%"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class=smalltxt vAlign=top&gt;&lt;SPAN id=ctl02_ctlTopic_ctlPanelBar_ctlTopicsRepeater_ctl04_lblFullMessage&gt;Just bought a Fusion Maps Developer License. Unfortunately, there is a bug in FCMap_NewWorld.swf. After loading the web page with the XML file below, the world map does not display the color #bacaff for Russia (id=118). But after you hover over Russia, the color #bacaff appears and stays there. This problem occurs only for Russia, all the other countries show up as desired. Used Versions: Fusion Maps 3, Internet Explorer 6.0 or Firefox 3.0, Flash 9.0. Is there any solution?&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;MAP animation="0" showCanvasBorder="0" showShadow="0" showBevel="0" borderColor="ffffff" fillColor="dddddd" HoverColor="dd1122" showLabels="0" baseFont="Trebuchet MS" &lt;br&gt;&amp;lt;map animation='0' showCanvasBorder='0' showShadow='0' showBevel='0' borderColor='ffffff' fillColor='dddddd' HoverColor='dd1122' showLabels='0' baseFont='Trebuchet MS' &lt;BR&gt;baseFontSize='12' baseFontColor='333333' legendPosition='bottom' legendBorderColor='ffffff' legendShadow='0' hoverOnEmpty='0'&amp;gt;&lt;BR&gt;&amp;lt;colorRange&amp;gt;&lt;BR&gt;&amp;lt;color minValue="0" maxValue="2" displayValue="Test" color="000000" /&amp;gt;&lt;BR&gt;&amp;lt;/colorRange&amp;gt;&lt;BR&gt;&amp;lt;data&amp;gt;&lt;/MAP&gt;&lt;MAP animation="0" showCanvasBorder="0" showShadow="0" showBevel="0" borderColor="ffffff" fillColor="dddddd" HoverColor="dd1122" showLabels="0" baseFont="Trebuchet MS" &lt;br&gt;&lt;BR&gt;&lt;BR&gt;&amp;lt;entity id='118' value='1' toolText='Russia: Bug' /&amp;gt;&lt;BR&gt;&amp;lt;entity id='05' value='1' toolText='Canada/other: OK' /&amp;gt;&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&amp;lt;/data&amp;gt;&lt;BR&gt;&amp;lt;styles&amp;gt;&lt;BR&gt;&amp;lt;definition&amp;gt;&lt;BR&gt;&amp;lt;style name='TTipFont' type='font' size='10' isHTML='1' color="001155" bgColor='ffffff' alpha='20' borderColor="ffffff" /&amp;gt;&lt;BR&gt;&amp;lt;/definition&amp;gt;&lt;BR&gt;&amp;lt;application&amp;gt;&lt;BR&gt;&amp;lt;apply toObject='TOOLTIP' styles='TTipFont' /&amp;gt;&lt;BR&gt;&amp;lt;/application&amp;gt;&lt;BR&gt;&amp;lt;/styles&amp;gt;&lt;BR&gt;&amp;lt;/map&amp;gt;&lt;/MAP&gt;&lt;/SPAN&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;</description><pubDate>Fri, 09 Jan 2009 13:04:51 GMT</pubDate><dc:creator>Topolino</dc:creator></item><item><title>Papua New Guinea map not showing color range</title><link>http://www.fusioncharts.com/forum/Topic13829-12-1.aspx</link><description>Can you advise whay the PNG m,ap I have is not showing the color range as set by the xml below:&lt;/P&gt;&lt;P&gt;&amp;lt;map numberPrefix='$' baseFontSize='9' fillAlpha='70' hoverColor='639ACE'&amp;gt;&lt;BR&gt; &amp;lt;colorRange&amp;gt;&lt;BR&gt;  &amp;lt;color minValue='0' maxValue='10000' displayValue='Very Low Sales' color='B80000' /&amp;gt;&lt;BR&gt;  &amp;lt;color minValue='10000' maxValue='20000' displayValue='Moderate Sales' color='FFCC33' /&amp;gt;&lt;BR&gt;  &amp;lt;color minValue='20000' maxValue='50000' displayValue='High Sales' color='008200' /&amp;gt;&lt;BR&gt; &amp;lt;/colorRange&amp;gt;&lt;/P&gt;&lt;P&gt; &amp;lt;data&amp;gt;&lt;BR&gt;  &amp;lt;entity id='North Solomons' value='5150' /&amp;gt;&lt;BR&gt;  &amp;lt;entity id='002' value='10515' /&amp;gt;&lt;BR&gt;  &amp;lt;entity id='003' value='4310' /&amp;gt;&lt;BR&gt;  &amp;lt;entity id='004' value='12000' /&amp;gt;&lt;BR&gt;  &amp;lt;entity id='005' value='8900' /&amp;gt;&lt;BR&gt;  &amp;lt;entity id='006' value='6515' /&amp;gt;&lt;BR&gt;  &amp;lt;entity id='007' value='7000' /&amp;gt;&lt;BR&gt;  &amp;lt;entity id='008' value='12515' /&amp;gt;&lt;BR&gt;  &amp;lt;entity id='009' value='18000' /&amp;gt;&lt;BR&gt;  &amp;lt;entity id='010' value='3412' /&amp;gt;&lt;BR&gt;  &amp;lt;entity id='011' value='7867' /&amp;gt;&lt;BR&gt;  &amp;lt;entity id='012' value='9800' /&amp;gt;&lt;BR&gt;  &amp;lt;entity id='013' value='34000' /&amp;gt;&lt;BR&gt;  &amp;lt;entity id='014' value='38000' /&amp;gt;&lt;BR&gt;  &amp;lt;entity id='015' value='12390' /&amp;gt;&lt;BR&gt;  &amp;lt;entity id='016' value='11000' /&amp;gt;&lt;BR&gt;  &amp;lt;entity id='017' value='8767' /&amp;gt;&lt;BR&gt;  &amp;lt;entity id='016' value='11000' /&amp;gt;&lt;BR&gt;  &amp;lt;entity id='017' value='8767' /&amp;gt;&lt;BR&gt; &amp;lt;/data&amp;gt;&lt;BR&gt;  &amp;lt;styles&amp;gt;&lt;BR&gt;  &amp;lt;definition&amp;gt;&lt;BR&gt;   &amp;lt;style type="animation" name="animX" param="_xscale" start="0" duration="1" /&amp;gt;&lt;BR&gt;   &amp;lt;style type="animation" name="animY" param="_yscale" start="0" duration="1" /&amp;gt;&lt;BR&gt;  &amp;lt;/definition&amp;gt; &lt;BR&gt;  &amp;lt;application&amp;gt;&lt;BR&gt;   &amp;lt;apply toObject="PLOT" styles="animX,animY" /&amp;gt;&lt;BR&gt;  &amp;lt;/application&amp;gt;&lt;BR&gt; &amp;lt;/styles&amp;gt;&lt;BR&gt;&amp;lt;/map&amp;gt;&lt;/P&gt;&lt;P&gt;Html Below:&lt;/P&gt;&lt;P&gt;&amp;lt;link rel="stylesheet" href="Style.css" type="text/css" /&amp;gt;&lt;BR&gt;&amp;lt;script language="JavaScript" src="FusionMaps.js"&amp;gt;&amp;lt;/script&amp;gt;&lt;BR&gt;&amp;lt;/head&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;body&amp;gt;&lt;BR&gt;&amp;lt;table width="98%" border="0" cellspacing="0" cellpadding="3" align="center"&amp;gt;&lt;BR&gt;  &amp;lt;tr&amp;gt; &lt;BR&gt;    &amp;lt;td valign="top" class="text" align="center"&amp;gt;&lt;BR&gt; &amp;lt;div id="mapdiv" align="center"&amp;gt; &lt;BR&gt;        FusionMaps.&lt;BR&gt; &amp;lt;/div&amp;gt;&lt;BR&gt;        &amp;lt;script type="text/javascript"&amp;gt;&lt;BR&gt;    var map = new FusionMaps("Charts/FCMap_PapuaNewGuinea.swf", "Map1Id", "900", "400", "0", "0");&lt;BR&gt;      map.setDataURL("Data/png.xml");     &lt;BR&gt;    map.render("mapdiv");&lt;BR&gt; &amp;lt;/script&amp;gt;&lt;BR&gt;    &amp;lt;/td&amp;gt;&lt;BR&gt;  &amp;lt;/tr&amp;gt;&lt;BR&gt;&amp;lt;/table&amp;gt;&lt;BR&gt;&amp;lt;/body&amp;gt;&lt;BR&gt;&amp;lt;/html&amp;gt;&lt;BR&gt;Thanks</description><pubDate>Thu, 30 Apr 2009 23:12:40 GMT</pubDate><dc:creator>Kumunjayi</dc:creator></item><item><title>USA Map Labels not rendering consistently</title><link>http://www.fusioncharts.com/forum/Topic8662-12-1.aspx</link><description>I have been doing development with the FCMap_USA.swf.&lt;br&gt;&lt;br&gt;I have the map registered with javascript and have javascript links for all of the states.  On every click, the map is reloading XML from a javascript object.&lt;br&gt;&lt;br&gt;There is a major bug:  every 20 clicks or so the labels for the states will not render and there is a thick black line that shows up at the top left of the map.  The tooltips still render and everything else still works fine but this could look very unprofessional to our users and is thus a major problem for us.&lt;br&gt;&lt;br&gt;You can see it in your own demo too:&lt;br&gt;http://www.fusioncharts.com/demos/Electoral/&lt;br&gt;Click a lot and you will see what I am talking about.</description><pubDate>Thu, 18 Sep 2008 14:59:29 GMT</pubDate><dc:creator>ztgray</dc:creator></item><item><title>setDataXML was set to null after clicked on USA map</title><link>http://www.fusioncharts.com/forum/Topic12911-12-1.aspx</link><description>Hi,&lt;br&gt;&lt;br&gt;I am using FCMap_USA.swf, calling setDataXML() to update data every 30 seconds.&lt;br&gt;Once I clicked on the map the map1.setDataXML was set to null.&lt;br&gt;&lt;br&gt;&lt;br&gt;I was not able to post the code for whole html page, so I put the part that is related to FusionMaps.&lt;br&gt;&lt;br&gt;    toFusionMapsData : function (holder)&lt;br&gt;    {&lt;br&gt;        var colorMap = ['FF0000', 'FF8080', 'FFA040', '40B266', '00FF00', '80FF80'];&lt;br&gt;        var stateCounts = $(window).data('stateCounts');&lt;br&gt;        var stateCountsSize = stateCounts.length;&lt;br&gt;        var sectionSize = parseInt(stateCountsSize/(colorMap.length));&lt;br&gt;        var preV = 0, tmpV;&lt;br&gt;        var dvs = [];&lt;br&gt;        var index = 0;&lt;br&gt;        var legend = "&lt;colorRange&gt;";&lt;br&gt;&lt;br&gt;        if (stateCountsSize &lt;= colorMap.length)&lt;br&gt;        {&lt;br&gt;            for (var i=0; i&lt;stateCountsSize; i++)&lt;br&gt;            {&lt;br&gt;                legend = legend.concat("&lt;color minValue='", stateCounts[i], "' maxValue='", stateCounts[i] + 1, "' displayValue='", stateCounts[i], "+' color='", colorMap[i], "'&gt;&lt;/color&gt;");&lt;br&gt;            }&lt;br&gt;            legend = legend.concat("&lt;/colorRange&gt;");&lt;br&gt;        }&lt;br&gt;        else&lt;br&gt;        {&lt;br&gt;            for (var i=0; i&lt;stateCountsSize; i++)&lt;br&gt;            {&lt;br&gt;                tmpV = parseInt(i/sectionSize);&lt;br&gt;                if (preV != tmpV)&lt;br&gt;                {&lt;br&gt;                    dvs[index] = stateCounts[i - 1];&lt;br&gt;                    index++;&lt;br&gt;                    preV = tmpV;&lt;br&gt;                }&lt;br&gt;            }&lt;br&gt;&lt;br&gt;            // legend&lt;br&gt;            var dvl = dvs.length - 1;&lt;br&gt;&lt;br&gt;            for (var i=0; i&lt;dvl; i++)&lt;br&gt;            {&lt;br&gt;                legend = legend.concat("&lt;color minValue='", dvs[i], "' maxValue='", stateCounts[0] + 100, "' displayValue='", dvs[i], "+' color='", colorMap[i], "'&gt;&lt;/color&gt;");&lt;br&gt;            }&lt;br&gt;            legend = legend.concat("&lt;color minValue='1' maxValue='", dvs[dvl-1], "' displayValue='less' color='", colorMap[dvl], "'&gt;&lt;/color&gt;&lt;/colorRange&gt;");&lt;br&gt;        }&lt;br&gt;&lt;br&gt;        var data = "&lt;data&gt;";&lt;br&gt;        for (var x in holder)&lt;br&gt;        {&lt;br&gt;            data = data.concat("&lt;entity id='", x, "' value='", holder[x], "'/&gt;");&lt;br&gt;        }&lt;br&gt;        data = data.concat("&lt;/data&gt;&lt;/map&gt;");&lt;br&gt;        return "&lt;map showCanvasBorder='0' borderColor='005879' bgalpha='0' fillColor='D7F4FF' baseFontSize='9' legendPosition='right'&gt;" + legend + data;&lt;br&gt;    },&lt;br&gt;&lt;br&gt;    load_fusioncharts :function (data)&lt;br&gt;    {&lt;br&gt;        var w = Math.round($(window).width() / 2);&lt;br&gt;        var h = Math.round($(window).height() / 3);&lt;br&gt;&lt;br&gt;        var map1 = new FusionMaps("FCMap_USA.swf", "map1Id", w, h, "0", "1");&lt;br&gt;        map1.setDataXML(data);&lt;br&gt;        map1.render("map1div");&lt;br&gt;    },&lt;br&gt;&lt;br&gt;    update : function()&lt;br&gt;    {&lt;br&gt;        var mapObj = getMapFromId("map1Id");&lt;br&gt;        $('#mapObj').width('100%').height('100%');&lt;br&gt;        if (mapObj.setDataXML)&lt;br&gt;        {&lt;br&gt;            var data = this.getFusionChartUSADBData();&lt;br&gt;            data = this.toFusionMapsData(data);&lt;br&gt;            mapObj.setDataXML(data);&lt;br&gt;            data = null;&lt;br&gt;        }&lt;br&gt;    },&lt;br&gt;</description><pubDate>Thu, 02 Apr 2009 10:21:09 GMT</pubDate><dc:creator>gwofu</dc:creator></item><item><title>ChangeDataXML.html not working</title><link>http://www.fusioncharts.com/forum/Topic12294-12-1.aspx</link><description>Hi,&lt;br&gt;&lt;br&gt;I just downloaded FusionMaps_Trial today and ran "FusionMaps_Trial/Code/JavaScript/ChangeDataXML.html" in Firefox 3 and IE 7 and both complain mapObj.setDataXML is not defined.&lt;br&gt;&lt;br&gt;Regards,&lt;br&gt;&lt;br&gt;&lt;br&gt;</description><pubDate>Wed, 11 Mar 2009 12:04:11 GMT</pubDate><dc:creator>gwofu</dc:creator></item><item><title>FC_Rendered not loading!!</title><link>http://www.fusioncharts.com/forum/Topic12250-12-1.aspx</link><description>Hi, have two Apache Web Servers running with PHP installed, one of it is on my local PC, the other one is on a newly DEDICATED SERVER on a HOSTING. I've noticed that the FC_Rendered javascript function is NOT firing from the DEDICATED SERVER on the HOSTING bue it is working OK on the apache on my local PC. How can this be possible??, the code is exacyle the same, is there anything to configure in Apache configuration that is may be disabled in ths HOSTING??&lt;/P&gt;&lt;P&gt;Thank you very much!</description><pubDate>Mon, 09 Mar 2009 11:05:35 GMT</pubDate><dc:creator>pochimen</dc:creator></item><item><title>Luxembourg doesn't show values in the Belgium Map.</title><link>http://www.fusioncharts.com/forum/Topic11522-12-1.aspx</link><description>Hi,&lt;br&gt;On working with the belgium map, i figured that the luxembourg region does not show values even though the value has been assigned. It seems like a known issue.&lt;br&gt;Please let me know if i need to update the xml file, the belgium .swf file or both.&lt;br&gt;&lt;br&gt;thanks,&lt;br&gt;Jaideep.</description><pubDate>Tue, 03 Feb 2009 14:40:36 GMT</pubDate><dc:creator>jaideep</dc:creator></item><item><title>Wrong turkish shortname(s)</title><link>http://www.fusioncharts.com/forum/Topic11801-12-1.aspx</link><description>In Europe map, Turkey shortname is TK.&lt;br&gt;In Middle-East map, it is TU.&lt;br&gt;In ISO 3166-1-alpha-2-code it is TR ...&lt;br&gt;&lt;br&gt;In a more general order, do the shortnames refer to a particular standard and which one please ?&lt;br&gt;I try to validate a functional prototype but I have many problems linking it to any iso country list.&lt;br&gt;&lt;br&gt;Indeed, very nice job done on your tools ;)&lt;br&gt;&lt;br&gt;References :&lt;br&gt;http://www.iso.org/iso/country_codes/iso_3166_code_lists/english_country_names_and_code_elements.htm&lt;br&gt;http://www.iana.org/domains/root/db/&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;br&gt;</description><pubDate>Fri, 13 Feb 2009 09:12:02 GMT</pubDate><dc:creator>antony</dc:creator></item><item><title>Foreign and international characters don't show up right in Fusion Maps</title><link>http://www.fusioncharts.com/forum/Topic11196-12-1.aspx</link><description>Hi,&lt;br&gt;I am trying to display foreign and international characters using Fusion maps (examples could be using say korean or other languages) and they dont show up right.&lt;br&gt;&lt;br&gt;For eg. This piece of text - "Größer als 50 Millionen" doesn't come out correctly either. Please advise.</description><pubDate>Thu, 22 Jan 2009 10:50:48 GMT</pubDate><dc:creator>jaideep</dc:creator></item><item><title>XML Data not loading in IE on XP behind an SSL</title><link>http://www.fusioncharts.com/forum/Topic11020-12-1.aspx</link><description>Hi,&lt;br&gt;&lt;br&gt;We have FusionMaps installed on a client site that is behind an ssl in an https directory. The map works great in every browser except IE (shocking I know). I found this article in the knowledge base about the issue: http://www.fusioncharts.com/KB/article.aspx?id=10091&amp;cNode=5X6X2A and applied the fix suggested there. The map now works fine in everything including IE7 on vista, but still doesn't load the XML data on an XP machine in IE7. &lt;br&gt;&lt;br&gt;The site is built in php/ajax and the map is pulling data from a php file that is populated via CMS so that our client can update the map data moving forward. Like I said, everything works great in every browser but IE on XP (and I'm assuming older windows os's, but we don't have a machine to check anything older than XP running right now). &lt;br&gt;&lt;br&gt;Has anyone experienced a similar problem, or are there suggestions for any possible workaround that we could try?</description><pubDate>Wed, 14 Jan 2009 09:54:04 GMT</pubDate><dc:creator>gene_</dc:creator></item><item><title>Updated maps for Bosnia, Serbia, Kosovo?</title><link>http://www.fusioncharts.com/forum/Topic10922-12-1.aspx</link><description>Are there any updated / corrected map files available for Bosnia, Serbia, and Kosovo?&lt;br&gt;&lt;br&gt;In version 3:&lt;br&gt;&lt;br&gt;- Bosnia only shows the Federation (and it's 10 cantons). It excludes the Serb Republic (RS) areas (which are still a part of Bosnia)&lt;br&gt;&lt;br&gt;- Serbia still includes the 4 districts that are now independent Kosovo&lt;br&gt;&lt;br&gt;- There is no Kosovo map&lt;br&gt;&lt;br&gt;Thanks,&lt;br&gt;Neil</description><pubDate>Thu, 08 Jan 2009 14:38:30 GMT</pubDate><dc:creator>nlaslett</dc:creator></item><item><title>JavaScript Link not working</title><link>http://www.fusioncharts.com/forum/Topic9236-12-1.aspx</link><description>I'm using the trial version...&lt;/P&gt;&lt;P&gt;and I can't ge the Javascript link to work per the example in the documnetation...&lt;/P&gt;&lt;P&gt;per the documentation, i have added 'link="JavaScript:myJS('NA, 515');" ' to the entity tag.&lt;/P&gt;&lt;P&gt;when the map renderes the entity mouse pointer does change (like it should be a link) but when I click on it, nothing happens.&lt;/P&gt;&lt;P&gt;when I call that JS function from another test link on the page, it works...</description><pubDate>Wed, 15 Oct 2008 19:24:13 GMT</pubDate><dc:creator>oalavi</dc:creator></item><item><title>Bug in entityDef</title><link>http://www.fusioncharts.com/forum/Topic10622-12-1.aspx</link><description>Hi,&lt;br&gt;&lt;br&gt;In all maps, when my newId is equal to the internalId, the maps don't use the new sName and lName.&lt;br&gt;&lt;br&gt;For example:&lt;br&gt;&lt; entity internalId='002' newId='002' sName='Huh' lName='LoveFusionChart' / &gt;&lt;br&gt;&lt;br&gt;(If I put a space between "&lt;" and "entity" it's because i don't know how to quote code :Whistling: ) &lt;br&gt;&lt;br&gt;Have you a solution for me plz? :D&lt;br&gt;&lt;br&gt;</description><pubDate>Tue, 16 Dec 2008 08:25:43 GMT</pubDate><dc:creator>Ivery</dc:creator></item><item><title>Country errors in map of Europe</title><link>http://www.fusioncharts.com/forum/Topic9578-12-1.aspx</link><description>Hi,&lt;br&gt;We just published a map of Europe at [url=http://ec.europa.eu/economy_finance/thematic_articles/article13288_en.htm]http://ec.europa.eu/economy_finance/thematic_articles/article13288_en.htm[/url]&lt;br&gt;Our readers found 2 errors:&lt;br&gt;- Rhodes Island is not part of Turkey but is part of Greece (small island between Crete and Turkey)&lt;br&gt;- Faroe Islands are not part of UK, but are part of Denmark&lt;br&gt;&lt;br&gt;Also we found that &lt;br&gt;- Cyprus should be divided into 2 territories&lt;br&gt;&lt;br&gt;Please correct this map ASAP.&lt;br&gt;&lt;br&gt;----&lt;br&gt;Please note that we acquired a developer license through PC-Ware and Digital River's Element5.&lt;br&gt;</description><pubDate>Tue, 04 Nov 2008 08:16:57 GMT</pubDate><dc:creator>Michel G</dc:creator></item><item><title>Misssing departmens in FranceDepartmens map</title><link>http://www.fusioncharts.com/forum/Topic9164-12-1.aspx</link><description>Hi,&lt;br&gt;&lt;br&gt;As far as I can tell, you are missing two departments in the FCMap_FranceDepartment.swf file:&lt;br&gt;- Val-de-Marne&lt;br&gt;- Seine-Saint-Denis&lt;br&gt;&lt;br&gt;thanks for a great product,&lt;br&gt;Erik</description><pubDate>Mon, 13 Oct 2008 07:33:15 GMT</pubDate><dc:creator>edelcom</dc:creator></item><item><title>Error in map for Belgium</title><link>http://www.fusioncharts.com/forum/Topic6243-12-1.aspx</link><description>Hi, can you please look at the following javascript (automatically generated by code to display values in the Belgium map).&lt;br&gt;[code]&lt;br&gt; map_FusionMap1.setDataXML("&amp;lt;map borderColor='005879' fillAlpha='70' dfillColor='D7F4FF' fillColor='eeeeee' animation='1' showLabels='1' includeNameInLabels='0' includeValueInLabels='1' showBevel='1' showvalues='1'  baseFontSize='9'   formatNumberScale='0' formatNumber='1' numberPrefix='' numberSuffix='' decimalSeparator=',' thousandSeparator='.' inThousandSeparator=',' inDecimalSeparator='.' decimals='0' forceDecimals='1' showAlternateHGridColor='1' alternateHGridColor='808080' galpha='0' bgAlpha='10,10' canvasPadding='10' canvasBorderColor='333333' canvasBorderThickness='0' numVDivLines='0' vDivLineIsDashed='1' vDivLineDashLen='2' vDivLineDashGap='2' adjustDiv='0' slabelDisplay='Stagger' labelDisplay='WRAP'  showShadow='1' showCanvasBorder='0'  showLegend='1' legendPosition='Bottom' &amp;gt;&amp;lt;colorRange&amp;gt;&amp;lt;color minValue='0' maxValue='5' displayValue='tot 5' color='ff0000' /&amp;gt; &amp;lt;color minValue='6' maxValue='10' displayValue='tot 10' color='ff8000' /&amp;gt; &amp;lt;color minValue='11' maxValue='25' displayValue='tot 25' color='ffff00' /&amp;gt; &amp;lt;color minValue='26' maxValue='50' displayValue='tot 50' color='80ff80' /&amp;gt; &amp;lt;color minValue='51' maxValue='100' displayValue='tot 100' color='008080' /&amp;gt; &amp;lt;color minValue='101' maxValue='250' displayValue='tot 250' color='0080ff' /&amp;gt; &amp;lt;color minValue='251' maxValue='100000' displayValue='rest' color='800000' /&amp;gt; &amp;lt;/colorRange&amp;gt; &amp;lt;entityDef&amp;gt;   &amp;lt;entity internalId='01' newId='1'/&amp;gt;   &amp;lt;entity internalId='02' newId='3'/&amp;gt;   &amp;lt;entity internalId='03' newId='5'/&amp;gt;   &amp;lt;entity internalId='04' newId='4'/&amp;gt;   &amp;lt;entity internalId='05' newId='6'/&amp;gt;   &amp;lt;entity internalId='06' newId='7'/&amp;gt;   &amp;lt;entity internalId='07' newId='8'/&amp;gt;   &amp;lt;entity internalId='08' newId='11'/&amp;gt;   &amp;lt;entity internalId='09' newId='10'/&amp;gt;   &amp;lt;entity internalId='010' newId='2'/&amp;gt;   &amp;lt;entity internalId='011' newId='9'/&amp;gt; &amp;lt;/entityDef&amp;gt; &amp;lt;data&amp;gt;&amp;lt;entity id='1' value='257' displayValue='Antw 257' toolText='257'  /&amp;gt;&amp;lt;entity id='2' value='100' displayValue='Brus 100' toolText='100'  /&amp;gt;&amp;lt;entity id='3' value='66' displayValue='Hene 66' toolText='66'  /&amp;gt;&amp;lt;entity id='4' value='77' displayValue='Limb 77' toolText='77'  /&amp;gt;&amp;lt;entity id='5' value='86' displayValue='Luik 86' toolText='86'  /&amp;gt;&amp;lt;entity id='6' value='15' displayValue='Luxe 15' toolText='15'  /&amp;gt;&amp;lt;entity id='7' value='48' displayValue='Name 48' toolText='48'  /&amp;gt;&amp;lt;entity id='8' value='104' displayValue='Oost 104' toolText='104'  /&amp;gt;&amp;lt;entity id='9' value='70' displayValue='Vlaa 70' toolText='70'  /&amp;gt;&amp;lt;entity id='10' value='37' displayValue='Waal 37' toolText='37'  /&amp;gt;&amp;lt;entity id='11' value='83' displayValue='West 83' toolText='83'  /&amp;gt;&amp;lt;/data&amp;gt;&amp;lt;/map&amp;gt;");&lt;br&gt;[/code]&lt;br&gt;You will notice two problems:&lt;br&gt;1/ the region Luxemburg is empty on the map , although it should display a value of 15 : &amp;lt;entity id='6' value='15' displayValue='Luxe 15' toolText='15' /&amp;gt;&lt;br&gt;2/ the region for Brussel is not color coded (but it does display the value of 100)&lt;br&gt;And one strange thing:&lt;br&gt;Your internal id's 10 en 11 are preceeded with a 0 , so are the id's 1 to 9 (but there you would expect a leading zero).&lt;br&gt;&lt;br&gt;Can you please update the Belgium map as soon as possible ? This is used in an online system as click thru maps, and at the moment it is impossible to click on the luxemburg region.&lt;br&gt;&lt;br&gt;Thanks in advance,&lt;br&gt;Erik</description><pubDate>Tue, 13 May 2008 04:44:10 GMT</pubDate><dc:creator>edelcom</dc:creator></item><item><title>Map callbacks do not work after loading 2nd map.</title><link>http://www.fusioncharts.com/forum/Topic9070-12-1.aspx</link><description>I am replacing an existing map with a second one by creating a new FusionMaps object with the registerWithJS flag set to 1.  The callback functions (getEntityList, setDataXML, etc.) are not being properly registered, and generate an error when I try to call them. (The first map works OK)&lt;/P&gt;&lt;P&gt;The problem appears to be the following code in the render function in FusionMaps.js.&lt;/P&gt;&lt;FONT size=2&gt;&lt;P align=left&gt;if(!document.embeds[this.getAttribute('id')] &amp;amp;&amp;amp; !window[this.getAttribute('id')])&lt;/P&gt;&lt;P align=left&gt;window[this.getAttribute('id')]=document.getElementById(this.getAttribute('id')); &lt;/P&gt;&lt;P align=left&gt;It appears that the if statement prevents the window[this.getAttribute('id')] being properly set for the 2nd map, preventing the callback functions from being properly registered.&lt;/P&gt;&lt;P align=left&gt;This is FusionMaps V3.0, using IE 7.&lt;/P&gt;&lt;P align=left&gt; &lt;/P&gt;&lt;/FONT&gt;</description><pubDate>Mon, 06 Oct 2008 10:39:23 GMT</pubDate><dc:creator>Earl.Bennett</dc:creator></item><item><title>Map Specification Sheet for Georgia (Asia) shows data for U.S. State of Georgia</title><link>http://www.fusioncharts.com/forum/Topic9069-12-1.aspx</link><description>I am using FusionMaps V3.0.  When I click on the link for the Map Specification Sheet for the Asian country of Georgia in the on line documentation, I get the map specification sheet for the U.S. state of Georgia.</description><pubDate>Mon, 06 Oct 2008 10:35:38 GMT</pubDate><dc:creator>Earl.Bennett</dc:creator></item><item><title>Russia's mouseover not fully working in NewWorld map</title><link>http://www.fusioncharts.com/forum/Topic7631-12-1.aspx</link><description>Reposting this from the "Using FusionMaps" forum, since this is clearly the more appropriate forum for it (and I didn't get a response there):&lt;br&gt;&lt;br&gt;Hi,&lt;br&gt;&lt;br&gt;I've got the NewWorld map up and running (on a local network using private data, unfortunately, so I can't provide a link), and overall it's pretty awesome. I am having one problem, though - I've assigned "link" attributes to each of my elements, and they're all working just fine, except that when I mouse over Russia, the cursor doesn't turn into a hand (i.e. the CSS value cursor:pointer, or the hand you see when you mouseover a link). Clicking on Russia activates its "link" attribute just fine, it's just the mouseover bit that's broken. Any idea what's going on?&lt;br&gt;&lt;br&gt;Here's the entity declaration for Russia in my map (swapping angle-brackets for regular brackets to deal with the forum:&lt;br&gt;&lt;br&gt;[entity id='RU' value='16.36' link='javascript:asiaMap.renderMap();' /]&lt;br&gt;&lt;br&gt;And yes, asiaMap.renderMap() is a working function defined elsewhere, and I've got a declaration in my entityDef section that looks like this:&lt;br&gt;&lt;br&gt;[entity internalId='174' newId='RU' /]&lt;br&gt;&lt;br&gt;Thanks a bunch,&lt;br&gt;-JR</description><pubDate>Mon, 28 Jul 2008 12:32:38 GMT</pubDate><dc:creator>jrheard</dc:creator></item><item><title>XML works for setDataURL but not for setDataXML</title><link>http://www.fusioncharts.com/forum/Topic8702-12-1.aspx</link><description>When using javascript to build and set the XML for the USA map using setDataXML I get the error:&lt;br&gt;&lt;br&gt;ERROR: Invalid XML encountered. An XML element is malformed. Check the XML data that you've provided. If you've special characters in your XML (like %, &amp;, ' or accented characters), please URL Encode them.&lt;br&gt;&lt;br&gt;However, if I copy and paste the EXACT same XML returned by the javascript into a file and use the setDataURL method, the map renders perfectly.&lt;br&gt;&lt;br&gt;It seems like the problem is trying to use single quotes ( ' ) inside the elements returned from the javascript.  I have tried replacing them with &amp;#39; (xml encode), %27 (url encode) and &amp;apos; (html encode).  These ALL give errors!&lt;br&gt;&lt;br&gt;Please help.&lt;br&gt;&lt;br&gt;Thanks!</description><pubDate>Mon, 22 Sep 2008 14:43:01 GMT</pubDate><dc:creator>ztgray</dc:creator></item><item><title>Map size increase after post back</title><link>http://www.fusioncharts.com/forum/Topic7836-12-1.aspx</link><description>Dear All,&lt;P&gt;I am new to this control and have no much idea on how it works, and implemented on asp.net. The map we used increases the size and display became incorrect (means some part of the map gets cut off) when a page post back occurs. Please find the images below:&lt;BR&gt;&lt;/P&gt;&lt;P&gt;Image Before Postback occurs (when loaded for first time)&lt;BR&gt;&lt;IMG src="http://www.fusioncharts.com/forum/Uploads/Images/80169e5d-699e-48d3-9f26-29a7.JPG"&gt;&lt;/P&gt;&lt;P&gt;Image after Postback occurs:&lt;/P&gt;&lt;P&gt;&lt;IMG src="http://www.fusioncharts.com/forum/Uploads/Images/d7b61a21-e549-4930-9aee-6ed1.JPG"&gt;&lt;/P&gt;&lt;P&gt;Following is the xml code generated during runtime:&lt;/P&gt;&lt;P&gt;Fist time (Before postback)&lt;BR&gt;&amp;lt;!-- START Script Block for Chart myTable --&amp;gt;&lt;BR&gt;&amp;lt;div id='myTableDiv' align='left'&amp;gt;&lt;BR&gt;Chart.&lt;BR&gt;&amp;lt;/div&amp;gt;&lt;BR&gt;&amp;lt;script type="text/javascript"&amp;gt;&lt;BR&gt;var chart_myTable = new FusionCharts("../PowerMaps/FCMap_France.swf", "myTable", "650", "550", "0", "0");&lt;BR&gt;chart_myTable.setDataXML("&amp;lt;map fillcolor='99CCFF' showToolTip='0' animation='0' showShadow='0' showBevel='0' showLegend='0' showLabels='0' showMarkerLabels='1'  borderColor='000000'  baseFont='Verdana' baseFontSize='10'  markerBorderColor='000000' markerBgColor='FF5904' markerRadius='3' legendPosition='bottom' useHoverColor='0' showMarkerToolTip='1'  &amp;gt;&amp;lt;markers&amp;gt;&amp;lt;definition&amp;gt;&amp;lt;marker id='369' x='565' y='530' label='Ajaccio' color='00ff00' labelPos='Top' /&amp;gt;&amp;lt;marker id='370' x='387' y='211' label='Auxerre' color='00ff00' labelPos='Top' /&amp;gt;&amp;lt;marker id='371' x='225' y='391' label='Bordeaux' color='00ff00' labelPos='Bottom' /&amp;gt;&amp;lt;marker id='372' x='272' y='197' label='Le Mans' color='00ff00' labelPos='Left' /&amp;gt;&amp;lt;marker id='373' x='356' y='51' label='Lens' color='00ff00' labelPos='Left' /&amp;gt;&amp;lt;marker id='374' x='370' y='39' label='Lille' color='00ff00' labelPos='Top' /&amp;gt;&amp;lt;marker id='375' x='449' y='308' label='Lyon' color='00ff00' labelPos='Bottom' /&amp;gt;&amp;lt;marker id='376' x='447' y='466' label='Marseille' color='00ff00' labelPos='Right' /&amp;gt;&amp;lt;marker id='377' x='486' y='140' label='Metz' color='00ff00' labelPos='Top' /&amp;gt;&amp;lt;marker id='378' x='529' y='437' label='Monaco' color='00ff00' labelPos='Right' /&amp;gt;&amp;lt;marker id='379' x='486' y='152' label='Nancy' color='00ff00' labelPos='Bottom' /&amp;gt;&amp;lt;marker id='380' x='189' y='247' label='Nantes' color='00ff00' labelPos='Top' /&amp;gt;&amp;lt;marker id='381' x='526' y='433' label='Nice' color='00ff00' labelPos='Top' /&amp;gt;&amp;lt;marker id='382' x='353' y='143' label='Paris Saint-Germain' color='00ff00' labelPos='Bottom' /&amp;gt;&amp;lt;marker id='383' x='519' y='444' label='Rennes' color='00ff00' labelPos='Left' /&amp;gt;&amp;lt;marker id='384' x='182' y='188' label='Saint-Etienne' color='00ff00' labelPos='Top' /&amp;gt;&amp;lt;marker id='385' x='503' y='220' label='Sochaux' color='00ff00' labelPos='Bottom' /&amp;gt;&amp;lt;marker id='386' x='542' y='152' label='Strasbourg' color='00ff00' labelPos='Top' /&amp;gt;&amp;lt;marker id='387' x='308' y='450' label='Toulouse' color='00ff00' labelPos='Top' /&amp;gt;&amp;lt;marker id='388' x='414' y='184' label='Troyes' color='00ff00' labelPos='Top' /&amp;gt;&amp;lt;marker id='389' x='330' y='95' label='Amiens' color='00ff00' labelPos='Right' /&amp;gt;&amp;lt;marker id='390' x='590' y='485' label='Bastia' color='00ff00' labelPos='Right' /&amp;gt;&amp;lt;marker id='391' x='68' y='167' label='Brest' color='00ff00' labelPos='Right' /&amp;gt;&amp;lt;marker id='392' x='250' y='125' label='Caen' color='00ff00' labelPos='Right' /&amp;gt;&amp;lt;marker id='393' x='315' y='273' label='Chateauroux' color='00ff00' labelPos='Top' /&amp;gt;&amp;lt;marker id='394' x='375' y='308' label='Clermont' color='00ff00' labelPos='Top' /&amp;gt;&amp;lt;marker id='396' x='445' y='240' label='Dijon' color='00ff00' labelPos='Left' /&amp;gt;&amp;lt;marker id='397' x='465' y='350' label='Grenoble' color='00ff00' labelPos='Top' /&amp;gt;&amp;lt;marker id='398' x='399' y='277' label='Gueugnon' color='00ff00' labelPos='Right' /&amp;gt;&amp;lt;marker id='399' x='120' y='156' label='Guingamp' color='00ff00' labelPos='Top' /&amp;gt;&amp;lt;marker id='402' x='270' y='110' label='Le Havre' color='00ff00' labelPos='Right' /&amp;gt;&amp;lt;marker id='403' x='104' y='207' label='Lorient' color='00ff00' labelPos='Top' /&amp;gt;&amp;lt;marker id='404' x='400' y='450' label='Montpellier' color='00ff00' labelPos='Top' /&amp;gt;&amp;lt;marker id='405' x='420' y='130' label='Reims' color='00ff00' labelPos='Bottom' /&amp;gt;&amp;lt;marker id='406' x='431' y='100' label='Sedan' color='00ff00' labelPos='Top' /&amp;gt;&amp;lt;marker id='408' x='392' y='54' label='Valenciennes' color='00ff00' labelPos='Right' /&amp;gt;&amp;lt;marker id='1072' x='225' y='305' label='Niort' color='00ff00' labelPos='Right' /&amp;gt;&amp;lt;marker id='1074' x='235' y='380' label='Libourne' color='00ff00' labelPos='Right' /&amp;gt;&amp;lt;marker id='1180' x='235' y='220' label='Angers' color='00ff00' labelPos='Right' /&amp;gt;&amp;lt;marker id='1181' x='315' y='38' label='Boulogne-sur-Mer' color='00ff00' labelPos='Left' /&amp;gt;&amp;lt;/definition&amp;gt;&amp;lt;application&amp;gt;&amp;lt;marker id='369' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d369' /&amp;gt;&amp;lt;marker id='370' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d370' /&amp;gt;&amp;lt;marker id='371' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d371' /&amp;gt;&amp;lt;marker id='372' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d372' /&amp;gt;&amp;lt;marker id='373' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d373' /&amp;gt;&amp;lt;marker id='374' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d374' /&amp;gt;&amp;lt;marker id='375' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d375' /&amp;gt;&amp;lt;marker id='376' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d376' /&amp;gt;&amp;lt;marker id='377' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d377' /&amp;gt;&amp;lt;marker id='378' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d378' /&amp;gt;&amp;lt;marker id='379' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d379' /&amp;gt;&amp;lt;marker id='380' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d380' /&amp;gt;&amp;lt;marker id='381' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d381' /&amp;gt;&amp;lt;marker id='382' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d382' /&amp;gt;&amp;lt;marker id='383' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d383' /&amp;gt;&amp;lt;marker id='384' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d384' /&amp;gt;&amp;lt;marker id='385' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d385' /&amp;gt;&amp;lt;marker id='386' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d386' /&amp;gt;&amp;lt;marker id='387' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d387' /&amp;gt;&amp;lt;marker id='388' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d388' /&amp;gt;&amp;lt;marker id='389' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d389' /&amp;gt;&amp;lt;marker id='390' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d390' /&amp;gt;&amp;lt;marker id='391' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d391' /&amp;gt;&amp;lt;marker id='392' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d392' /&amp;gt;&amp;lt;marker id='393' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d393' /&amp;gt;&amp;lt;marker id='394' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d394' /&amp;gt;&amp;lt;marker id='396' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d396' /&amp;gt;&amp;lt;marker id='397' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d397' /&amp;gt;&amp;lt;marker id='398' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d398' /&amp;gt;&amp;lt;marker id='399' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d399' /&amp;gt;&amp;lt;marker id='402' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d402' /&amp;gt;&amp;lt;marker id='403' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d403' /&amp;gt;&amp;lt;marker id='404' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d404' /&amp;gt;&amp;lt;marker id='405' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d405' /&amp;gt;&amp;lt;marker id='406' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d406' /&amp;gt;&amp;lt;marker id='408' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d408' /&amp;gt;&amp;lt;marker id='1072' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d1072' /&amp;gt;&amp;lt;marker id='1074' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d1074' /&amp;gt;&amp;lt;marker id='1180' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d1180' /&amp;gt;&amp;lt;marker id='1181' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d1181' /&amp;gt;&amp;lt;/application&amp;gt;&amp;lt;/markers&amp;gt;&amp;lt;/map&amp;gt;");&lt;BR&gt;chart_myTable.render("myTableDiv");&lt;BR&gt;&amp;lt;/script&amp;gt;&lt;BR&gt;&amp;lt;!-- END Script Block for Chart myTable --&amp;gt;&lt;BR&gt;&lt;/P&gt;&lt;P&gt;Second time (After postback)&lt;BR&gt;&amp;lt;!-- START Script Block for Chart myTable --&amp;gt;&lt;BR&gt;&amp;lt;div id='myTableDiv' align='left'&amp;gt;&lt;BR&gt;Chart.&lt;BR&gt;&amp;lt;/div&amp;gt;&lt;BR&gt;&amp;lt;script type="text/javascript"&amp;gt;&lt;BR&gt;var chart_myTable = new FusionCharts("../PowerMaps/FCMap_France.swf", "myTable", "650", "550", "0", "0");&lt;BR&gt;chart_myTable.setDataXML("&amp;lt;map fillcolor='99CCFF' showToolTip='0' animation='0' showShadow='0' showBevel='0' showLegend='0' showLabels='0' showMarkerLabels='1'  borderColor='000000'  baseFont='Verdana' baseFontSize='10'  markerBorderColor='000000' markerBgColor='FF5904' markerRadius='3' legendPosition='bottom' useHoverColor='0' showMarkerToolTip='1'  &amp;gt;&amp;lt;markers&amp;gt;&amp;lt;definition&amp;gt;&amp;lt;marker id='369' x='565' y='530' label='Ajaccio' color='00ff00' labelPos='Top' /&amp;gt;&amp;lt;marker id='370' x='387' y='211' label='Auxerre' color='00ff00' labelPos='Top' /&amp;gt;&amp;lt;marker id='371' x='225' y='391' label='Bordeaux' color='00ff00' labelPos='Bottom' /&amp;gt;&amp;lt;marker id='372' x='272' y='197' label='Le Mans' color='00ff00' labelPos='Left' /&amp;gt;&amp;lt;marker id='373' x='356' y='51' label='Lens' color='00ff00' labelPos='Left' /&amp;gt;&amp;lt;marker id='374' x='370' y='39' label='Lille' color='00ff00' labelPos='Top' /&amp;gt;&amp;lt;marker id='375' x='449' y='308' label='Lyon' color='00ff00' labelPos='Bottom' /&amp;gt;&amp;lt;marker id='376' x='447' y='466' label='Marseille' color='00ff00' labelPos='Right' /&amp;gt;&amp;lt;marker id='377' x='486' y='140' label='Metz' color='00ff00' labelPos='Top' /&amp;gt;&amp;lt;marker id='378' x='529' y='437' label='Monaco' color='00ff00' labelPos='Right' /&amp;gt;&amp;lt;marker id='379' x='486' y='152' label='Nancy' color='00ff00' labelPos='Bottom' /&amp;gt;&amp;lt;marker id='380' x='189' y='247' label='Nantes' color='00ff00' labelPos='Top' /&amp;gt;&amp;lt;marker id='381' x='526' y='433' label='Nice' color='00ff00' labelPos='Top' /&amp;gt;&amp;lt;marker id='382' x='353' y='143' label='Paris Saint-Germain' color='00ff00' labelPos='Bottom' /&amp;gt;&amp;lt;marker id='383' x='519' y='444' label='Rennes' color='00ff00' labelPos='Left' /&amp;gt;&amp;lt;marker id='384' x='182' y='188' label='Saint-Etienne' color='00ff00' labelPos='Top' /&amp;gt;&amp;lt;marker id='385' x='503' y='220' label='Sochaux' color='00ff00' labelPos='Bottom' /&amp;gt;&amp;lt;marker id='386' x='542' y='152' label='Strasbourg' color='00ff00' labelPos='Top' /&amp;gt;&amp;lt;marker id='387' x='308' y='450' label='Toulouse' color='00ff00' labelPos='Top' /&amp;gt;&amp;lt;marker id='388' x='414' y='184' label='Troyes' color='00ff00' labelPos='Top' /&amp;gt;&amp;lt;marker id='389' x='330' y='95' label='Amiens' color='00ff00' labelPos='Right' /&amp;gt;&amp;lt;marker id='390' x='590' y='485' label='Bastia' color='00ff00' labelPos='Right' /&amp;gt;&amp;lt;marker id='391' x='68' y='167' label='Brest' color='00ff00' labelPos='Right' /&amp;gt;&amp;lt;marker id='392' x='250' y='125' label='Caen' color='00ff00' labelPos='Right' /&amp;gt;&amp;lt;marker id='393' x='315' y='273' label='Chateauroux' color='00ff00' labelPos='Top' /&amp;gt;&amp;lt;marker id='394' x='375' y='308' label='Clermont' color='00ff00' labelPos='Top' /&amp;gt;&amp;lt;marker id='396' x='445' y='240' label='Dijon' color='00ff00' labelPos='Left' /&amp;gt;&amp;lt;marker id='397' x='465' y='350' label='Grenoble' color='00ff00' labelPos='Top' /&amp;gt;&amp;lt;marker id='398' x='399' y='277' label='Gueugnon' color='00ff00' labelPos='Right' /&amp;gt;&amp;lt;marker id='399' x='120' y='156' label='Guingamp' color='00ff00' labelPos='Top' /&amp;gt;&amp;lt;marker id='402' x='270' y='110' label='Le Havre' color='00ff00' labelPos='Right' /&amp;gt;&amp;lt;marker id='403' x='104' y='207' label='Lorient' color='00ff00' labelPos='Top' /&amp;gt;&amp;lt;marker id='404' x='400' y='450' label='Montpellier' color='00ff00' labelPos='Top' /&amp;gt;&amp;lt;marker id='405' x='420' y='130' label='Reims' color='00ff00' labelPos='Bottom' /&amp;gt;&amp;lt;marker id='406' x='431' y='100' label='Sedan' color='00ff00' labelPos='Top' /&amp;gt;&amp;lt;marker id='408' x='392' y='54' label='Valenciennes' color='00ff00' labelPos='Right' /&amp;gt;&amp;lt;marker id='1072' x='225' y='305' label='Niort' color='00ff00' labelPos='Right' /&amp;gt;&amp;lt;marker id='1074' x='235' y='380' label='Libourne' color='00ff00' labelPos='Right' /&amp;gt;&amp;lt;marker id='1180' x='235' y='220' label='Angers' color='00ff00' labelPos='Right' /&amp;gt;&amp;lt;marker id='1181' x='315' y='38' label='Boulogne-sur-Mer' color='00ff00' labelPos='Left' /&amp;gt;&amp;lt;/definition&amp;gt;&amp;lt;application&amp;gt;&amp;lt;marker id='369' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d369' /&amp;gt;&amp;lt;marker id='370' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d370' /&amp;gt;&amp;lt;marker id='371' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d371' /&amp;gt;&amp;lt;marker id='372' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d372' /&amp;gt;&amp;lt;marker id='373' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d373' /&amp;gt;&amp;lt;marker id='374' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d374' /&amp;gt;&amp;lt;marker id='375' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d375' /&amp;gt;&amp;lt;marker id='376' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d376' /&amp;gt;&amp;lt;marker id='377' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d377' /&amp;gt;&amp;lt;marker id='378' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d378' /&amp;gt;&amp;lt;marker id='379' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d379' /&amp;gt;&amp;lt;marker id='380' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d380' /&amp;gt;&amp;lt;marker id='381' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d381' /&amp;gt;&amp;lt;marker id='382' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d382' /&amp;gt;&amp;lt;marker id='383' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d383' /&amp;gt;&amp;lt;marker id='384' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d384' /&amp;gt;&amp;lt;marker id='385' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d385' /&amp;gt;&amp;lt;marker id='386' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d386' /&amp;gt;&amp;lt;marker id='387' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d387' /&amp;gt;&amp;lt;marker id='388' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d388' /&amp;gt;&amp;lt;marker id='389' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d389' /&amp;gt;&amp;lt;marker id='390' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d390' /&amp;gt;&amp;lt;marker id='391' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d391' /&amp;gt;&amp;lt;marker id='392' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d392' /&amp;gt;&amp;lt;marker id='393' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d393' /&amp;gt;&amp;lt;marker id='394' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d394' /&amp;gt;&amp;lt;marker id='396' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d396' /&amp;gt;&amp;lt;marker id='397' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d397' /&amp;gt;&amp;lt;marker id='398' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d398' /&amp;gt;&amp;lt;marker id='399' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d399' /&amp;gt;&amp;lt;marker id='402' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d402' /&amp;gt;&amp;lt;marker id='403' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d403' /&amp;gt;&amp;lt;marker id='404' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d404' /&amp;gt;&amp;lt;marker id='405' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d405' /&amp;gt;&amp;lt;marker id='406' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d406' /&amp;gt;&amp;lt;marker id='408' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d408' /&amp;gt;&amp;lt;marker id='1072' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d1072' /&amp;gt;&amp;lt;marker id='1074' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d1074' /&amp;gt;&amp;lt;marker id='1180' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d1180' /&amp;gt;&amp;lt;marker id='1181' shapeId='circle' link='..%2fPageClubInformation%2fDefault.aspx%3fclubid%3d1181' /&amp;gt;&amp;lt;/application&amp;gt;&amp;lt;/markers&amp;gt;&amp;lt;/map&amp;gt;");&lt;BR&gt;chart_myTable.render("myTableDiv");&lt;BR&gt;&amp;lt;/script&amp;gt;&lt;BR&gt;&amp;lt;!-- END Script Block for Chart myTable --&amp;gt;&lt;BR&gt;&lt;/P&gt;&lt;P&gt;Thanks and need you help..</description><pubDate>Tue, 05 Aug 2008 07:35:55 GMT</pubDate><dc:creator>suan.ngaihte</dc:creator></item><item><title>Error in rendering correct values for some US States</title><link>http://www.fusioncharts.com/forum/Topic3714-12-1.aspx</link><description>I tried to use different coloring for each state county and I found out that some counties are not rendering correctly.&lt;br&gt;&lt;br&gt;Louisiana -&gt; East Felician (EF - 037)&lt;br&gt;West Viginia -&gt; Jefferson (JE - 037)&lt;br&gt;Wisconsin -&gt; Florence (FL - 037)&lt;br&gt;Texas -&gt; Bowie (BOI - 037)&lt;br&gt;&lt;br&gt;Can anyone help me with this?&lt;br&gt;&lt;br&gt;Thanks</description><pubDate>Wed, 09 Jan 2008 02:43:15 GMT</pubDate><dc:creator>midknight</dc:creator></item><item><title>showLabel not working for individual entity</title><link>http://www.fusioncharts.com/forum/Topic6629-12-1.aspx</link><description>When showLabels='0' is set for the parent &amp;lt;map&amp;gt; section, setting showLabel='1' on an individual &amp;lt;entity&amp;gt; seems to have no effect.&lt;P&gt;The inverse (&amp;lt;map showLabels='1'&amp;gt; &amp;amp; &amp;lt;entity showLabel='0'&amp;gt; ) does work.&lt;/P&gt;&lt;P&gt;Neil</description><pubDate>Wed, 04 Jun 2008 14:05:01 GMT</pubDate><dc:creator>nlaslett</dc:creator></item><item><title>Having multiple charts in one page eats up a lot of memory</title><link>http://www.fusioncharts.com/forum/Topic1445-12-1.aspx</link><description>Im using fusion charts in a ruby on rails app. Im generating graphs through embedding flash objects in the page. It seems that it eats up a lot of memory and uses almost 90% cpu utilization.  I've noticed this on firefox.  Haven't tested yet on IE.</description><pubDate>Tue, 26 Jun 2007 10:37:03 GMT</pubDate><dc:creator>franee</dc:creator></item><item><title>VertiCal Scroll for Gantt Chart</title><link>http://www.fusioncharts.com/forum/Topic5425-12-1.aspx</link><description>If the number of datapoints are large/unpredictable/dyanamic the how to enable vertical scroll ?</description><pubDate>Wed, 02 Apr 2008 06:26:28 GMT</pubDate><dc:creator>amitpore</dc:creator></item><item><title>Putting flash file next to fusionmap flash file creates display problem</title><link>http://www.fusioncharts.com/forum/Topic5447-12-1.aspx</link><description>I've got a fusionmap on my homepage and directly next to it another flash file I created.  When refreshing the screen, my flash file temporarily displays three times in random places until the page is fully loaded, at which point everything looks fine.  I've tried seperating the flash files into divs, tables, nothing works??</description><pubDate>Fri, 04 Apr 2008 02:09:50 GMT</pubDate><dc:creator>erikwd</dc:creator></item><item><title>setDataURL method only can send one GET param?</title><link>http://www.fusioncharts.com/forum/Topic4847-12-1.aspx</link><description>I am trying to render a map with dynamic content via data given to a php file with GET parameters.  However, the method only appears capable of sending one parameter!&lt;br&gt;&lt;br&gt;In the PHP:&lt;br&gt;echo '&lt;br&gt;&lt;div id="mapdiv" align="center"&gt;PowerMaps&lt;/div&gt;                                                                                               &lt;br&gt;   &lt;script type="text/javascript"&gt;                                                                                                            &lt;br&gt;      var map = new PowerMap("../swf/FCMap_USA.swf", "Map1Id", "750", "400", "0", "0");                                                       &lt;br&gt;      map.setDataURL("maps_data_xml.php?start_date=02-19-2008&amp;words=haagen&amp;normalized=1");                                                    &lt;br&gt;      map.render("mapdiv");                                                                                                                   &lt;br&gt;   &lt;/script&gt;&lt;br&gt;';&lt;br&gt;&lt;br&gt;And in the page source it looks OK:&lt;br&gt;&lt;br&gt;&lt;br&gt;&lt;div id="mapdiv" align="center"&gt;PowerMaps&lt;/div&gt;&lt;br&gt;   &lt;script type="text/javascript"&gt;&lt;br&gt;      var map = new PowerMap("../swf/FCMap_USA.swf", "Map1Id", "750", "400", "0", "0");&lt;br&gt;      map.setDataURL("maps_data_xml.php?start_date=02-19-2008&amp;words=haagen&amp;normalized=1");&lt;br&gt;      map.render("mapdiv");&lt;br&gt;   &lt;/script&gt;&lt;br&gt;&lt;br&gt;OK, all good, but in the apache logs the page is given as&lt;br&gt;&lt;br&gt;at: www.xx.com/intern/data/maps_data_xml.php?start_date=02-19-2008&lt;br&gt;&lt;br&gt;i.e. no second or third parameter.  I flipped the order of the parameters and only the first one is ever sent (i.e. if I put "words" first then the words get sent but none of the others)&lt;br&gt;&lt;br&gt;I think this is a major bug unless I am doing something wrong....I use similar methods with FusionCharts and never have any problems.</description><pubDate>Fri, 29 Feb 2008 20:35:26 GMT</pubDate><dc:creator>roddy</dc:creator></item><item><title>Error on Links in pop-up windows in IE6 and IE7 when using FusionMaps</title><link>http://www.fusioncharts.com/forum/Topic3713-12-1.aspx</link><description>I tried to use the US and States maps and I wanted to drill down from the US map to each state by pop-up a new window. I use the link attribute in the entity object and I encoded something like this:&lt;br&gt;[link='P-detailsWin,width=1050,height=700,toolbar=no,scrollbars=no, resizable=no-Map.php?ref=116]&lt;br&gt;&lt;br&gt;I first used Firefox for this and it worked, however I switch from using Firefox as testing to Internet Explorer 6. As I click on one US state the browser was not creating a new window. So I check it in other browsers such as Opera and it work. I tried to install IE7 to test and the problem persist. Did I miss something or have I done something wrong with my code?&lt;br&gt;&lt;br&gt;Thanks</description><pubDate>Wed, 09 Jan 2008 02:33:26 GMT</pubDate><dc:creator>midknight</dc:creator></item><item><title>Possible bug in Real-Time Charts</title><link>http://www.fusioncharts.com/forum/Topic3602-12-1.aspx</link><description>Hi,&lt;br&gt;&lt;br&gt;I am using the trial version of FusionGadgets. Currently I am trying to display a streaming line chart, and i am using hyperlinks which is suppose to open a new browser.&lt;br&gt;&lt;br&gt;In my static XML data, this line is included:&lt;br&gt;&lt;br&gt;set value='90' link='P-detailsWin,width=1800,height=900,toolbar=no,scrollbars=yes, resizable=yes-sampleLink.html' (within &lt; &gt; tags)&lt;br&gt;&lt;br&gt;When the chart is loaded, all the links which use the line above work perfectly.&lt;br&gt;&lt;br&gt;However, when new data is retrieved from a php file, the links do not work anymore. When i check on the 'page info' of the page, this value is used as the address -&gt; [b]http://localhost/hunter/htmls/P-detailsWin[/b].&lt;br&gt;&lt;br&gt;This is the code which is being appended to the generated data of the php file:&lt;br&gt;&lt;br&gt;'&amp;link=P-detailsWin,width=1800,height=900,toolbar=no,scrollbars=yes, resizable=yes-sampleLink.html'&lt;br&gt;&lt;br&gt;Is this a bug? &lt;br&gt;&lt;br&gt;Isn't the address supposed to be [b]http://localhost/hunter/htmls/sampleLink.html[/b]?&lt;br&gt;&lt;br&gt;Thanks,&lt;br&gt;Erwin</description><pubDate>Thu, 03 Jan 2008 23:03:46 GMT</pubDate><dc:creator>xyperxex</dc:creator></item><item><title>problem with data value = maxValue</title><link>http://www.fusioncharts.com/forum/Topic3552-12-1.aspx</link><description>&lt;SPAN id=_ctl1_ctlTopic_ctlPanelBar_ctlTopicsRepeater__ctl1_lblFullMessage&gt;I belive there is a small "bug" in the code for displaying colors and a legend. &lt;P&gt;consider the following:&lt;/P&gt;&lt;P&gt;&amp;lt;?php&lt;BR&gt;$dataArray[0][1]="IL"; $dataArray[0][2]="10";&lt;BR&gt;$dataArray[1][1]="IN"; $dataArray[1][2]="0";&lt;BR&gt;$dataArray[2][1]="IA"; $dataArray[2][2]="0";&lt;BR&gt;$dataArray[3][1]="MI"; $dataArray[3][2]="1";&lt;BR&gt;$dataArray[4][1]="WI"; $dataArray[4][2]="2";&lt;/P&gt;&lt;P&gt;&lt;BR&gt;// Declare $strXML to store dataXML of the map &lt;BR&gt;$strXML = "&amp;lt;map animation='0' showShadow='0' showBevel='0' showMarkerLabels='1' fillColor='F1f1f1' borderColor='000000' baseFont='Verdana' baseFontSize='10' markerBorderColor='000000' markerBgColor='FF5904' markerRadius='6' legendPosition='bottom' useHoverColor='1' showMarkerToolTip='1'  &amp;gt;";&lt;/P&gt;&lt;P&gt;// Opening MAP element&lt;BR&gt;$strXML = "&amp;lt;map showLabels='1' includeNameInLabels='1' borderColor='FFFFFF' fillAlpha='80' showBevel='0' legendPosition='Bottom' &amp;gt;";&lt;/P&gt;&lt;P&gt;// Setting Color ranges : 4 color ranges for population ranges&lt;BR&gt;$strXML .= "&amp;lt;colorRange&amp;gt;";&lt;BR&gt;$strXML .= "&amp;lt;color minValue='1' maxValue='5' displayValue='0 - 5' color='FFD33A' /&amp;gt;";  // CC0001&lt;BR&gt;$strXML .= "&amp;lt;color minValue='6' maxValue='10' displayValue='6 - 10' color='CC0001' /&amp;gt;";  // FFD33A&lt;BR&gt;$strXML .= "&amp;lt;color minValue='11' maxValue='15' displayValue='11 - 15' color='069F06' /&amp;gt;"; // 069F06&lt;BR&gt;$strXML .= "&amp;lt;color minValue='16' maxValue='20' displayValue='&amp;gt; 16' color='ABF456' /&amp;gt;";  // ABF456&lt;BR&gt;$strXML .= "&amp;lt;/colorRange&amp;gt;&amp;lt;data&amp;gt;";&lt;/P&gt;&lt;P&gt;// Opening data element that will store map data&lt;BR&gt;// Using Data from array for each entity &lt;BR&gt;for($i=0;$i&amp;lt;=4;$i++){&lt;BR&gt;$strXML .= "&amp;lt;entity id='" . $dataArray[$i][1] . "' value='" . $dataArray[$i][2] . "' /&amp;gt;";&lt;BR&gt;}&lt;/P&gt;&lt;P&gt;// closing data element &lt;BR&gt;$strXML .= "&amp;lt;/data&amp;gt;";&lt;/P&gt;&lt;P&gt;// closing map element&lt;BR&gt;$strXML .= "&amp;lt;/map&amp;gt;";&lt;/P&gt;&lt;P&gt;// Finally Rendering the World8 Maps with renderMap() php function present in FusionMaps.php (that we have inlcuded already) &lt;BR&gt;// Since we're using dataXML method, we provide a "" value for dataURL here&lt;/P&gt;&lt;P&gt;print renderMap("FusionMaps/FCMap_USA.swf","",$strXML,"firstMap", 750, 460,0,0);&lt;BR&gt;?&amp;gt;&lt;/P&gt;&lt;P&gt;the color is not displaying if the array value is equal to the max value in the color range.  I have to increase the maxvalue by 1 to the get the desired results.  However, this will throw off the range when I do this dynamically with a database.  I cannot check the max value each time to see if a value is equal to it.&lt;/P&gt;&lt;P&gt;Is there a work-around?&lt;BR&gt;&lt;/SPAN&gt;</description><pubDate>Sat, 29 Dec 2007 15:11:01 GMT</pubDate><dc:creator>keithh0427</dc:creator></item><item><title>Caribbean Maps</title><link>http://www.fusioncharts.com/forum/Topic3297-12-1.aspx</link><description>I am using Fusion Maps 3.0.4, with implementations of the North America map. However it seems the US and British Virgin Islands are missing from the North America map that has the caribbean country selections. &lt;br&gt;&lt;br&gt;Am I just missing the location or using an incorrect map?&lt;br&gt;I don't see an individual map of the caribbean, so is the only one that includes this area the North America map (FCMap_NorthAmerica.swf)</description><pubDate>Fri, 07 Dec 2007 09:34:15 GMT</pubDate><dc:creator>JasonInfront</dc:creator></item><item><title>Two Counties Misspelled in NC</title><link>http://www.fusioncharts.com/forum/Topic3205-12-1.aspx</link><description>There are two counties misspelled on the North Carolina Map:&lt;br&gt;&lt;br&gt;Chowman should be Chowan (no "w")&lt;br&gt;North Hampton should be Northampton - one word, one "h"&lt;br&gt;&lt;br&gt;Is there a way for me to correct these on my map?&lt;br&gt;&lt;br&gt;Celeste</description><pubDate>Wed, 28 Nov 2007 18:25:27 GMT</pubDate><dc:creator>Celeste</dc:creator></item></channel></rss>