daapl Report post Posted February 22, 2007 I can't seem to set a data URL that contains URL parameters. E.g: chart.setDataURL("data.php?gender=male&from=usa"); The above statement will not fetch the data with the parameters, but instead trim it down to run as: chart.setDataURL("data.php"); How can I use parameters in my data URLs ? Share this post Link to post Share on other sites
Pallav Report post Posted February 24, 2007 You'll need to URL-Encode the entire dataURL (that contains additional parameters), before specifying it to setDataURL method. Share this post Link to post Share on other sites