I am trying to get the charts to render purely in javascript by passing in 'renderer: javascript' to the jquery insertFusionCharts function. However the chrome console shows the error 'Uncaught SyntaxError: Unexpected token < ' and does not render. It works fine in flash. Here is the example call.
$(document).ready(function(){
$("#chartContainer").insertFusionCharts({
swfUrl: "/emp/it/telecom/ttn/xusers/itss050/FusionCharts/FusionCharts XT/Charts/Column3D.swf",
dataSource: "/emp/it/telecom/ttn/xusers/itss050/FusionCharts/FusionCharts XT/Charts/Data.xml",
renderer: "javascript",
dataFormat: "xmlurl",
width: "400",
height: "300",
id: "myChartId"
});
});
Currently I am using the trial version. I redownloaded it today to make sure it was not a bug that was fixed but did not help. The following example in the download does not work either and gives the same error. /FusionCharts/FusionCharts%20XT/Code/MyFirstChart/weekly-sales-force-js.html
Any ideas or suggestions?