|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 2/29/2008 3:59:44 AM
Posts: 2,
Visits: 5
|
|
Hi,
Im very new to FusionCharts. But i think it's the bomb!
Can you help me? I need to display data from my MySQL DB in a Multi-series Chart. I have 3 Fields - Date, Users, Uploads. So far i can only display the Date and Users data in a Single-series chart. I need to know how to edit the strXML string in my JSP file to display the three compents in a Multi-series Chart. I.e. Date (x-axis), Users and Uploads (y-axis).
Cheers!
Peter
|
|
|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 2/29/2008 3:59:44 AM
Posts: 2,
Visits: 5
|
|
|
|
|
|
Supreme Being
      
Group: Moderators
Last Login: Today @ 4:56:35 AM
Posts: 706,
Visits: 1,143
|
|
| hi, Please go through the Documentation and XML structure of an Multiseries chart like MSColumn3D from our Documentation : http://www.fusioncharts.com/ In the same Documentation you can have a look at the 'Using With JSP' Section, in 'Guide For Web Developers.' You can have an uinsight in to how XML is created with JSP. You write it any way you wish, provided that the resultant XML conforms to the norms of a multoseries chart. A general XML structure for a multiseries chart : <chart> <categories> <category label='YourDate'/> ... </categories> <dataset seriesName='Users'> <set value='..'/> ... </dataset> <dataset seriesName='Uploads'> <set value=''/> ... </dataset> </chart>
Regards,
Sudipto Choudhury FusionCharts Team
|
|
|
|