Sign in to follow this  
iulian

World with countries

Recommended Posts

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

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>

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this