amitporeciti Report post Posted June 29, 2012 from your example in the link below for each ==> new FusionCharts("FusionCharts/Column2D.swf" Its making a call on the server for for each call even though if it the same swf file. why do they make a server hit for each "Column2D.swf" ? http://docs.fusioncharts.com/charts/contents/FirstChart/MultipleCharts.html Share this post Link to post Share on other sites
Guest Sumedh Report post Posted July 2, 2012 Hi, Can you please elaborate your query a bit more? Share this post Link to post Share on other sites
amitporeciti Report post Posted July 2, 2012 Hi, Can you please elaborate your query a bit more? We are having 10 charts of same type which we are creating using below. new FusionCharts("FusionCharts/Column2D.swf Now for each "new FusionCharts()" for the same chart type its making a server hit to get the chart. The chart type is same for all the 10 charts so its the same swf file then why its making 10 hits to the server to get the same swf file ? Share this post Link to post Share on other sites
Guest Sumedh Report post Posted July 3, 2012 Hi, Whenever FusionCharts constructor is called, it creates an object of the chart. To render a chart, it is mandatory to create instance of the FusionCharts. All the created instances/objects have unique-ids. So whether it is a same chart or a different chart, an object will be created. Hope this helps. Share this post Link to post Share on other sites