Sign in to follow this  
chthani

Xml Issue

Recommended Posts

hi i am using fusion charts(old version- free) for my project using with JSP. for plotting data from database i used dataURL method. for single series charts its ok.but now i want to get a multiple series charts. but i dont know how to generate the XML file for that. for an example-

 

<graph caption="Business Results: 2005" yaxisname="Revenue (Millions)" hovercapbg="FFFFFF" divLineColor="999999" divLineAlpha="80" numdivlines="5" decimalPrecision="0" numberPrefix="{:content:}quot; numberSuffix="M">

 

<categories>

<category name="Hardware"/>

<category name="Software"/>

<category name="Service"/>

</categories>

 

<dataset seriesname="Domestic" color="839F2F">

<set value="84"/>

<set value="207"/>

<set value="116"/>

</dataset>

 

<dataset seriesname="International" color="56B9F9">

<set value="116"/>

<set value="237"/>

<set value="83"/>

</dataset>

</graph>

 

please any one can help me to get this XML .thanks...

Edited by chthani

Share this post


Link to post
Share on other sites
Guest Angshu

Hi,

 

Welcome to FusionCharts Forum!smile.gif

The XML generation process of multi-series chart is same as single-series chart, All you need to do is to build proper XML from the database that you query from your database.

 

Multi-series charts have a different data format from the format of an XML for a single-series chart like pie.

 

To know more about the format, please visit: http://www.fusioncha...ultiSeries.html

 

Hope this helps.smile.gif

 

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