VKumar Report post Posted July 13, 2010 Hi, i am new on FusionCharts. any body tell me tutorial of FusionCharts with XML that run in JSP. thanks. Share this post Link to post Share on other sites
Sanjukta Report post Posted July 13, 2010 (edited) Hi, Welcome to FusionCharts Forum. any body tell me tutorial of FusionCharts with XML that run in JSP. Could you please take a look through FusionCharts online documentation to get further deatails on the above? Ref.- http://www.fusioncharts.com/docs/ >> Guide for Web Developers >> Using with JSP Hope this helps. Please feel free to revert in case you have any further queries on the same. Edited July 13, 2010 by Guest Share this post Link to post Share on other sites
VKumar Report post Posted July 14, 2010 Thanks Sanjukta for your reply. i am making a simple program of FusionCharts in JSP on Eclipse. even though it show textual data on JSP at run time but it does not show any chart. i have attached zip file of entire folder. please find it and please suggest where is the issue. thank you. Example.zip Share this post Link to post Share on other sites
srividya_sharma Report post Posted July 14, 2010 (edited) Hi I just took a look at your application. In FusionCharts Free 1. the xml root element is <graph> 2. the equivalent of label attribute of <set> element in Free version is name So, your xml would have to be: <graph caption='Monthly Sales Summary' subcaption='For the year 2006' xAxisName='Month' yAxisName='Sales' numberPrefix='$'> <set name='January' value='17400' /> <set name='February' value='19800' /> <set name='March' value='21800' /> <set name='April' value='23800' /> <set name='May' value='29600' /> <set name='June' value='27600' /> <set name='July' value='31800' /> <set name='August' value='39700' /> <set name='September' value='37800' /> <set name='October' value='21900' /> <set name='November' value='32900' /> <set name='December' value='39800' /> </graph> Please change this in Data.xml and see if it works. Srividya Edited July 14, 2010 by Guest Share this post Link to post Share on other sites
VKumar Report post Posted July 15, 2010 thanks Vidya for your regard. flash issue was also on browser. now its updated and it is working fine. Share this post Link to post Share on other sites
Sanjukta Report post Posted July 15, 2010 Hi, You are welcome. Glad that your issue is resolved. happy FusionCharting! Share this post Link to post Share on other sites