Sign in to follow this  
Guest Rajroop

The problem about the fusionMaps and the SSGrid.swf of fusionCharts

Recommended Posts

I want to use the world(countries)  swf of fusionMaps and the SSGrid.swf to describe the information together.

For every entities in the xml file, I use one color to define that. 

for example:

- <data>
 <entity id="101" value="133145" color="#003399" />

  <entity id="175" value="98855"  color="#0099CC" />

  <entity id="116" value="14813"  color="#6699CC" />

  <entity id="122" value="8965" color="#336633" />

  <entity id="117" value="8257"  color="#99CC33" />

  <entity id="104" value="6864"  color="#CCFF66" />

  <entity id="105" value="5428"  color="#FFCC33" />

  <entity id="96" value="2532"  color="#FFFFCC" />

  <entity id="127" value="2286"  color="#FF9999" />

  <entity id="110" value="1975"  color="#FFCCCC" /> 

 </data>

in the xml file for SSGrid.
  <set label="China" value="133145" />

  <set label="Australia" value="98855"  />

  <set label="Pakistan" value="14813" />

  <set label="Thailand" value="8965" />

  <set label="Philippines" value="8257" />

  <set label="India" value="6864" />

  <set label="Indonesia" value="5428" />

  <set label="Bangladesh" value="2532" />

  <set label="Hong Kong" value="2286"/>

  <set label="Korea (south)" value="1975"  />

  I want to use the SSGrid chart to  describe the  list of the number of the above map. So in the two xml file. there are same data order.
But I find the color of SSGrid is different from the color of fusionMaps.
 
And I can't define and modify the color of the SSGrid.
So how to reslove that problem?

Share this post


Link to post
Share on other sites
Guest Rajroop

Hello,

 

 

 

Could you please try modifying the text in the XML file for the SSGrid according to the following format?

 

 

 

<chart>

 

<set label="China" value="133145" color="003399"/>

 

<set label="Australia" value="98855" color="0099CC" />

 

<set label="Pakistan" value="14813" color="6699CC"/>

 

<set label="Thailand" value="8965" color="336633" />

 

<set label="Philippines" value="8257" color="99CC33"/>

 

<set label="India" value="6864" color="CCFF66"/>

 

<set label="Indonesia" value="5428" color="FFCC33"/>

 

<set label="Bangladesh" value="2532" color="FFFFCC"/>

 

<set label="Hong Kong" value="2286" color="FF9999"/>

 

<set label="Korea (south)" value="1975" color="FFCCCC"/>

 

</chart>

 

 

 

I hope this helps. :)

Edited by Guest

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