AdrianNidz Report post Posted January 10, 2018 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()%> Share this post Link to post Share on other sites
Ayan Bhadury Report post Posted January 11, 2018 Hi, Yes you could read from the external data source all you need to do is set the data format as jsonurl if it is a JSON file and xmlurl if it is an xml file, then on the next parameter pass the file name with its extension To know more in details check this link - https://www.fusioncharts.com/dev/getting-started/setting-data-source-using-url.html Share this post Link to post Share on other sites