sreesh

Members
  • Content count

    4
  • Joined

  • Last visited

About sreesh

  • Rank
    Forum Newbie
  1. Getting Data Back From Chart

    Thank you so much for your help, now I completely understand what is going on. Can I export the data to a .csv file in my hard drive instead of displaying it as an alert? if so what is the javascript code for that?
  2. Getting Data Back From Chart

    Thank you so much for your reply, I have figured out the mistake that I had made. But the xml data is still not getting displayed when I run it in chrome. Can't figure out what is the issue there, it works perfectly in all other browsers.
  3. Hi, I am creating an web page using J2EE using data from a back end database. I am able to create only bar, pie, line charts using the example code available at http://docs.fusioncharts.com/charts/ I need help to create different types of charts such as combination and multi-series charts. So, please share example code of the bean file and the .jsp file for these charts.
  4. hi, I am not able to view the data of the chart, that I have created. I have just followed the steps given at http://docs.fusioncharts.com/charts/. The only change that i have done is keep the xml in a separate file instead of entering it in the html file. This is my html file: <html> <head> <title>My First chart using FusionCharts</title> <script type="text/javascript" src="FusionCharts/FusionCharts.js"> </script> </head> <body> <div id="chartContainer">FusionCharts XT will load here!</div> <script type="text/javascript"><!-- var myChart = new FusionCharts( "FusionCharts/StackedColumn3D.swf", "myChartId", "400", "300", "0", "1" ); myChart.setXMLUrl("MSData.xml"); myChart.render("chartContainer"); // --> </script> <input onclick = "alert(FusionCharts('myChartId').getDataAsCSV())" type="button" value="Get CSV Data from chart"> </body> </html>