Skip to Content
0
Former Member
Feb 07, 2011 at 11:48 AM

AnyChart with Flash Islands?

55 Views

There is a commercial component from AnyChart.com which allows very professional looking Gantt charts. The input is an XML string in a proprietary format. We have managed to integrate this in a WDA with an IFrame but we have no feedback from the IFrame to the WDA. Perhaps flash islands are the solution but the demo by Thomas seems very FLEX specific relying on complex programming to map data sets.

Question: How can I feed custom XML data from my WDA to the AnyGantt component as a Flash Island?

Example of XML string being fed in via JavaScript:

http://www.anychart.com/products/anygantt/docs/users-guide/livesamples/textarea/index.html

http://www.anychart.com/products/anygantt/docs/users-guide/SetXMLAsString.html

Sample XML:

<anygantt>
 <project_chart>
 <tasks>
 <task id="1" name="Task 1" parent="" actual_start="2008.07.01" actual_end=" 2008.07.12"/>
 <task id="2" name="Task 2" parent="1" actual_start="2008.07.01" actual_end="2008.07.07"/>
 <task id="3" name="Task 3" parent="1" actual_start="2008.07.04" actual_end="2008.07.09"/>
 <task id="4" name="Task 4" parent="2" actual_start="2008.07.05" actual_end="2008.07.12"/>
 </tasks>
 </project_chart>
 </anygantt>