Trying to do something simple: If there is a dataloaderror then don't render the chart.
Something like:
function FC_DataLoadError(DOMId){
if (DOMId=="chart1Id"){
//don't render
else
//render
The end result should be an empty DIV when there is an error and a chart rendered in the DIV when everything is good. I'm no javascript jockey but it looks to me that the chart has to render before the dataload error function can be called. When it renders, the flash movie with the "data load error" is displayed and takes up a 300px X 250px space. I want there to be nothing in the div on error if possible.
Thanks!