Hello,
is there possibility to read the datas in the following way? More precisly can i read datas from file? I tried do that with file data.json but with no result, help !
<div id="chart"></div>
<%
FusionCharts lineChart = new FusionCharts(
// type of chart
"line",
// unique chart ID
"myFirstChart",
// width and height of the chart
"500","300",
// div ID of the chart container
"chart",
// data format
"xml",
"data.json");
%>
<!-- Step 5: Render the chart -->
<%=lineChart.render()%>