Can I have the charts pull data directly from an array or recordset or webservice?

No. FusionWidgets necessarily needs its data in XML format. If you've your data in arrays, recordsets or as webservices, use your Flash code to retrieve the data from these sources and then convert it into XML at run-time (using string concatenation or XML Object methods). Finally, you can provide the XML to FusionWidgets.

You do not need to physically write XML files on disk. You can just provide the XML object instance FusionWidgets and it will read the same.

 
How do I update the data of a chart that has already instantiated and is showing?

To do so,

  1. First call the remove() method of the chart object, so that all objects of the chart are removed.
  2. Call the reInit() method of the chart object, to re-initialize chart
  3. Set the new XML Data using setXMLData() method
  4. Call render() method finally to render the chart
 
I'm done working with the chart object and would not use it again in the movie. How should I dispose it?
Just call the destroy() method of the chart object and our class will take care of the rest.
 
Can I dynamically resize a chart once it's loaded?
No - you cannot re-set the size of the chart once it has loaded. The size of the chart can only be set in constructor function.
 
Can I load FusionWidgets charts in Accordion/ScrollPane component?
At the time of this writing - no. Those components can show only objects that derive from UIObject class. FusionWidgets derives from its own custom classes.