pitommasi
Members-
Content count
166 -
Joined
-
Last visited
-
Days Won
1
Everything posted by pitommasi
-
Thank you for the reply. If they are small enough, is there a way to place them one next to the other (e.g. by using spans or floats) or they can only go one on top of the other? Thanks in advance
-
I have downloaded the SR1 of FusionMaps XT to evaluate the chance to upgrade my application. The problem is that FC_Rendered is not working anymore. this is the code that I am using: <html> <head> <title>My First map using FusionCharts JavaScript Class</title> <script type="text/javascript" src="Maps/FusionCharts.js"></script> </head> <body> <div id="mapContainer">FusionMaps XT will load here!</div> <script type="text/javascript"> FusionCharts.debugMode.enabled( function() { console.log(arguments); }, 'verbose'); var myMap = new FusionCharts ("Maps/FCMap_World.swf", "MyMapId", "750", "400", "1"); myMap.setXMLUrl ("Data.xml"); myMap.render("mapContainer"); function FC_Rendered(DOMId) { alert ( DOMId + " map has been rendered." ); } </script> </body> </html> and the XML used (both from the example contained in the documentation): <map borderColor='005879' fillColor='D7F4FF' numberSuffix='M' includeValueInLabels='1' labelSepChar=':' baseFontSize='9'> <data> <entity id='NA' value='515' /> <entity id='SA' value='373'/> <entity id='AS' value='3875' /> <entity id='EU' value='727' /> <entity id='AF' value='885' /> <entity id='AU' value='32' /> </data> </map> the function FC_Rendered is never fired. I have also tried the advanced model version: no luck! The only events that appear in the console are: beforeinitialize, initialized, dataloadrequestcancelled, dataloadrequested, beforerender, internal.domelementcreated Thank you in advance.
-
Thank you for the valuable information. Regards
-
Thank you for the reply. Do you already know when it will be available?
-
Since there is no answer yet, I'm trying again: do you plan to add the option to disable FCTime in the near future?
-
OK, so, we have automatic legend: definining color ranges, Fusion Maps automagically creates a legend. BUT: what if I needed a legend not based on ranges? I.E.: Italy, France and Belgium are Blue UK, Ireland and Spain are Green Portugal, Germany and Switzerland are Red Since different groups can have the same range of values, I cannot use ranges for the legend. How can I achieve this? Thanks in advance
-
Any update on the availability of south sudan in the maps? It was scheduled for the end of August if I remember correctly...
-
Is there a way to disable FCtime being appended? I want to take advantage of the cache or, at least, decide how to handle for each sepcific case. Thanks
-
Is there any update on this issue? What I would like to achieve is to remove the FCTime thing, and to use cache, since our XMLs change only every month or so... As there have been updates since this post, have you guys done any modification or do I still need to buy the source code to modify this option? Thanks in advance
-
I was referring to this sentence in your post: Anyway, thanks, we will wait for it
-
It looks like FusionMaps XT has been released. What about south sudan, not present in the maps gallery?
-
Hi! I have an application that uses up to 2 maps and up to 11 charts within the same page. I am planning to develop a mobile version, taking advantage of the Javascript fallback. Would it be still possible to provide the user with export and print functionality? Note that I have to save the pictures of the maps and charts in my server first, because I will need to assemble them all in one page. Thanks
-
Hi! Would it be possible to create colouring ranges for bar charts? Something like the MAP: <colorRange><color minValue="0" maxValue="500000.000000001" color="e7fcae" displayValue="Up to 500,000"/><color minValue="500000.000000002" maxValue="50000000.000000001" color="45779e" displayValue="500,000 to 50,000,000"/><color minValue="50000000.000000002" maxValue="500000000000" color="332580" displayValue="Over 50,000,000"/><color minValue="-1" maxValue="0" color="ffffff" displayValue="No data"/></colorRange> If not, can you please consider it a feature request? Best regards.
-
Thank you for your reply. I already do what you are suggesting. I was proposing a better implementation, consistent with FusionMaps, to avoid further calculations for the user: this way the only thing that your user would have to do is to specify a range. Regards
-
Suppressing "Retrieving Data" display
pitommasi replied to RationalRabbit's topic in Using FusionMaps XT
thank you. -
Suppressing "Retrieving Data" display
pitommasi replied to RationalRabbit's topic in Using FusionMaps XT
Thank you. Any news about rellease data of FusionMaps XT? -
Suppressing "Retrieving Data" display
pitommasi replied to RationalRabbit's topic in Using FusionMaps XT
no "custom messages", then? Like change the "no data" message in something more meaningful, like "please select a country from the dropdown"? I am looking for the equivalent of fusioncharts' myChart.configure("ChartNoDataText", "Please select a record above"); -
Think about the colorRange functionality of the maps. For example, the following piece of XML: <colorRange> <color minValue="0" maxValue="5" color="e7fcae" displayValue="Up to 5"/> <color minValue="5" maxValue="`15" color="45779e" displayValue="5 to 15"/> <color minValue="15" maxValue="50" color="332580" displayValue="Over 15"/> <color minValue="-1" maxValue="0" color="ffffff" displayValue="No data"/> </colorRange> would produce a chart like the one in the picture.
-
Thank you. Can you please move this post to the request forum or should I create a new one there?
-
any news about South Sudan entity in Africa Map? Thank you
-
Hi! Fusioncharts has .dspose() method: what about Fusionmaps?
-
White Border And Background For Pie Graph
pitommasi replied to JonathansCorner.com's topic in General usage
is the plotBorderColor='FFFFFF' setting valid for combined column (side by side) chart? I cannot get the border of the plots to be white -
I need to "zoom" into a map and I know that it is possible by applying the "negative margins" trick. what I need to know is if there is a mosre straightforward way to know which values I need instead of going by a series of guessing and trials. See the screenshot for reference: the map on the left becomes the map on the right by setting: mapLeftMargin="-320" mapTopMargin="-520" But, as I need to do the same thing for several maps, I am wonedring if there is a precise method to know the right values. thank you in advance.
-
Is it possible to eliminate counties?
pitommasi replied to FusionCharts Support's topic in Using FusionMaps XT
Is there a criteria that helpsin having to "fight" less (i.e. calculate the margins in a 'scientific' way)? -
The question asked is not a different way of zooming, but a more straightforward way other than "guessing" the negative margins, or at least what is the criteria to guess in less time.