Vijaya_FC

Members
  • Content count

    40
  • Joined

  • Last visited

Everything posted by Vijaya_FC

  1. Hi, I tried the example in the above said link: http://www.fusioncha...kFromChart.html But its throwing the error: FusionCharts("myChartId").getDataAsCSV is not a function Code: <html> <head> <title>Getting CSV data from chart</title> <script type="text/javascript" src="FusionCharts/FusionCharts.js"> </script> </head> <body> <div id="chartContainer">FusionCharts will load here!</div> <script type="text/javascript"> var myChart = new FusionCharts( "FusionCharts/Column3D.swf", "myChartId", "400", "300", "0", "0" ); myChart.setXMLData("<chart><set label='A' value='10' /><set label='B' value='11' /></chart>"); myChart.render("chartContainer"); </script> <input onclick = "alert(FusionCharts('myChartId').getDataAsCSV())" type="button" value="Get CSV Data from chart"> </body> </html>
  2. Hi, 1. Difference between free and paid version of FusionCharts 2. Please List out the features which can't be done using Free version 3. As of now we are using version 1.2.(Licensed), and we are planning to move to recent version. so what are all the steps need to follow. Thanks, Vijaya
  3. Hi, Is it possible to update the chart using the same data set? I am having the data to render the chart for daily updates. Is it possible to use the same data set to render the chart for weekly,yearly,monthly and quarterly time scale. Or I need to fetch the data separately for each time scale to update the chart? Thanks, Vijaya
  4. Hi, In the forum, on each topic and on each reply there is timestamp like "Posted 26 April 2011 - 06:06 AM". Is it possible to show the time depending on the Time Zone. Or If its already implemented,Please let me know how to set it in my account. Thanks, Vijaya
  5. Hi, How to render the existing chart in a new window on clicking a link "Open in a new window". Thanks, Vijaya
  6. Hi, "To open the existing chart on the same window, you would need to create a pop up window using JavaScript and pass the same code to the window to render the chart " I am using the ajax call to get the data for rendering the chart initially. So, Is it required to call the same method(ajax call) to get the data from the database to render the data in new window? Can't I use already rendered data by using the getDataXML as an input to the chart to open it in new window? Is there any other way to do this? Thanks, Vijaya
  7. Hi, Please move all my topics to Fusion charts and ruby on rails. As of now its on Fusion charts and ASP. Or let me know how to move these topics Thanks, Vijaya
  8. Move To Fc And Ror

    Hi, Thanks for the help Vijaya
  9. Hi, How to export the chart data to excel file. Fusion charts allows to export the chart image. Thanks, Vijaya
  10. http://www.fusioncharts.com/docs/JavaScript/JS_ChangeData.html, In this page there is an example of changing the month. In the same way I need two buttons for exporting the chart data to excel, and another button to open the chart in new window like "Export Data to Excel" | "Open Chart in New Window"
  11. Export To Excel

    Hi Thanks for the reply. Its for csv and for javascript. - it will copy to clip board and then paste to a file(manually). Is fusion charts having feature to exporting the data to a file(preferably Excel) in client's machine? as in chart to PNG,PDF....on right click of the chart, Is there any settings I need to set? Thanks, Vijaya
  12. Getting The Chart Data

    I am trying with the V-3 free version on my local machine, but its not working. Its throwing error: getXMLData is not a function In the view I am using: <% render_chart_html "/FusionCharts/MSLine.swf", '', str_xml,"myChart1#{params[:tab_id]}", 800, 400, false do-%> In JS function - getData var chartReference = FusionCharts(chart_id); var chartXML = chartReference.getXMLData(); alert(chartXML); But its not working. please let me know where I am missing.
  13. Hi, How to specify the number(18%,20%.....) inside each slice in pie chart(eg. shown are outside each slice of the chart) . I am using Pie.SWF. Is there any settings that need to be configured? or which swf to use to get the effect. Thanks, Vijaya
  14. Hi, Its on each data plot item, But I need to add a link a saying "Open in New window" above the chart area. How to do this? Thanks, Vijaya
  15. Getting The Chart Data

    Hi, Thanks for your reply. How to get the data from the generated chart. As per the examples, they are using getXMLData, getChartData functions. As in, http://www.fusioncharts.com/Code/JavaScript/Basics/GettingDataBackFromChart/Get_XML_data_from_a_chart_using_getXMLData.html Is it available in version 1.2? If it is not available, how to update to the recent version. And also, I am trying with the V-3 free version on my local machine, but its not working. Its throwing error: getXMLData is not a function In the view I am using: <% render_chart_html "/FusionCharts/MSLine.swf", '', str_xml,"myChart1#{params[:tab_id]}", 800, 400, false do-%> In JS function - getData var chartReference = FusionCharts(chart_id); var chartXML = chartReference.getXMLData(); alert(chartXML); But its not working. please let me know where I am missing.