Sign in to follow this  
FusionCharts Support

two questions before buying

Recommended Posts

hi

We are interested in your company's product "FusionCharts v3" and we have a mind to buy it,but we still have some questions to consult.

1.We downloaded the v3 trial version(not the free version) ,since our xml are dynamic generated by php,we need to pass some parameters,parameter format is like

xml.php?a=a&b=b; 

We found that parameters' length passed by get are limited,so we want to know if the formal v3 version has the same limit,or merely limited in this unauthorised version.

2.We alse found that we can't use other character sets except English in the display page(not use the individual xml file). For example,if we changed

 chart1.setDataXML("<chart><set label='A' value='10' /><set label='B' value='11' /></chart>

to

chart1.setDataXML("<chart><set label='??' value='10' /><set label='B' value='11' /></chart>

,it would not generate flash, this situation is of our incorrect use or is a real problem in your product?

Edited by Guest

Share this post


Link to post
Share on other sites

Hi,

1. The query string variables passed has not limit. Just you need to URLEncode the whole URL bofre passing...e.g. "Data.php?a=10&b=20&c=11&d=13" will be passed after

urlencode ("Data.php?a=10&b=20&c=11&d=13");

2. FusionCharts allows you to use multi-lingual (UTF-8) characters on the charts...you necessarily need to use dataURL method...make sure that your XML has a BOM mark that specifies UTF8 charset?

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