Reputation: 11645
I have page with multiple charts rendered using fusion charts and I am pulling large amount of data from the database for populating them. Some of the charts are getting timed out and have a continuous spinner, http request get aborted. the same chart shows up if the url for that chart is seperately run in the browser. I have increased the timeout value for jquery.ajax call but that is not working, I am assuming the time out occurs at the flash player level.Anyways to handle this timeout issue?
Upvotes: 0
Views: 1472
Reputation: 3502
There are various reasosn why this might happen and there are a number of workarounds as well.
.setDataURL
) and that you are not using pure HTML embedding method.ZoomLine
chart.FC_Rendered
event, render the next one... and so on.)XML
string using .setXMLData()
.You can also check whether this occurs even you are using JavaScript variant of the charts. If not then you may stick to using it.
PS: Answering this way late... but if you are still in the loop, it may help. :P
Upvotes: 2