iulian Report post Posted September 5, 2013 Hi, Can you give me an example of a "World with countries" chart loaded with data? I have the chart loaded with data in the following format (see below) but it's now showing any number. Any idea? <map ...> <data><entity id="AL" value="216951.39" link="javascript:chartDrillDown('AL',null,'test')"/> <entity id="AM" value="454648.99" link="javascript:chartDrillDown('AM',null,'test')"/> <entity id="AR" value="9003628.15" link="javascript:chartDrillDown('AR',null,'test')"/> <entity id="AT" value="16143432.81" link="javascript:chartDrillDown('AT',null,'test')"/> ... Thanks, Iulian Share this post Link to post Share on other sites
Guest Rishab Report post Posted September 6, 2013 Hi, Please use the Internal ID provided in the World with Countries Map Specification Sheet as the entity id of the <data> element.Please refer the below code snippet- <map...> <data> <entity id='129' value='216951.39' color='57D4D2'link="javascript:chartDrillDown('AL',null,'test')" /> <entity id='94' value="454648.99" color='57D4D2' link="javascript:chartDrillDown('AM',null,'test')" /> <entity id='25' value="9003628.15" color='57D4D2' link="javascript:chartDrillDown('AR',null,'test')" /> <entity id='131' value="16143432.81" color='57D4D2' link="javascript:chartDrillDown('AT',null,'test')" /> </data> </map> Ref-http://docs.fusioncharts.com/maps/Contents/MapSS/WorldwithCountriesMap.html Share this post Link to post Share on other sites