tags:

views:

396

answers:

2

Anyone know if there is a PHP wrapper for the latest version (5.X) of XML/SWF charts

+1  A: 

http://www.maani.us/charts/index.php

"As of version 5.0, there isn't a dedicated PHP interface for this charts tool. However, PHP or any other scripting language can still be used with XML/SWF Charts (the XML version of the same tool)."

There are examples how to use XML version with PHP:

http://www.maani.us/xml_charts/index.php?menu=Reference&submenu=Scripting

vartec
A: 

I don't know about the XML/SWF charts software, but if you feel like hand coding it, you can use PHP's XML classes and Ming to dynamically create charts. You would simply parse the xml data from the file, and pass it to a Ming object for processing. then include the swf when done.

Simple!

;-)

Chops