Sign in to follow this  
Guest gludington

Setdataurl Problem

Recommended Posts

Guest gludington

I am having problems using setDataURL. I have a simple multiseries chart, which I populate data with a remote call to a server)

 

When I populate the data using setDataURL, as follows:

 

chart.setDataURL('foo.xml?param1=bar&param2=bat');

or

chart.setDataURL('foo.xml%3Fparam1%3Dbar%26param2%3Dbat');

 

I get the "Error occurred loading data" error in the debug window. In both cases, the dataURL invoked does return valid XML. The content type is set to text/xml, the character encoding is UTF-8, and I am even emitting the BOM exactly as specified in the documentation, to no avail. (We gzip responses by default, is that an issue?)

 

The XML is not only valid, it is appropriate for the chart we are using. When I make an ajax call to that exact same URL, and call

 

chart.setDataXML(responseText);

 

in the callback, the chart draws without any problem, but we would like to use the setDataURL method. What other steps can we take to figure out what is wrong with the call from FusionCharts to our chartXml generators?

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