Sign in to follow this  
VKumar

sample program of FusionCharts in JSP

Recommended Posts

Hi,

Welcome to FusionCharts Forum. :D

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 by Guest

Share this post


Link to post
Share on other sites

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. :D

Example.zip

Share this post


Link to post
Share on other sites

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 :D

Edited by Guest

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this