Hello Guys
I am trying to deliver Linked charts using JSON data. I am using the javascript way now and then planning go the render tag route. I am using the evaluation version. I am able to see the level1 charts but not the linked chart when clicked on parent charts. I have all the three javascript files (FusionChart.js, highcharts.js, jquery.min.js). I am using setJSONData and this is the data I use
{"chart":{"caption":"OutstandingsDashboard","xaxisname":"months","yaxisname":"Outstanding Amount"},
"data":[{"label":"JUN10","value":100.01,"link":"newchart-json-1"},
{"label":"JUL10","value":200.01,"link":"newchart-json-2"}],
"linkeddata":[{"id":"1",
"linkedcharts":
{"chart":{"caption":"Dealer Outstandings","xaxisname":"name","yaxisname":"Outstanding Amount"},
"data":[{"label":"label_1_14","value":100.01},
{"label":"label_1_15","value":200.01},
{"label":"label_1_16","value":300.01},
{"label":"label_1_17","value":400.01},
{"label":"label_1_18","value":500.01},
{"label":"label_1_19","value":600.01},
{"label":"label_1_20","value":700.01},
{"label":"label_1_21","value":800.01},
{"label":"label_1_22","value":900.01},
{"label":"label_1_23","value":1000.01}]}},
{"id":"2",
"linkedcharts":
{"chart":{"caption":"Dealer Outstandings","xaxisname":"name","yaxisname":"Outstanding Amount"},
"data":[{"label":"label_2_24","value":100.01},
{"label":"label_2_25","value":200.01},
{"label":"label_2_26","value":300.01},
{"label":"label_2_27","value":400.01},
{"label":"label_2_28","value":500.01},
{"label":"label_2_29","value":600.01},
{"label":"label_2_30","value":700.01},
{"label":"label_2_31","value":800.01},
{"label":"label_2_32","value":900.01},
{"label":"label_2_33","value":1000.01}]}}
]}
Further more I have the same problem when trying the data provided by the Fusion chart examples. Is this feature available in evaluation version. Any help will be greatly appreciated.