Search the Community

Showing results for tags 'forms xml'.



More search options

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Company Forums
    • Company News
  • Product Forums
    • FusionCharts XT
    • FusionWidgets XT
    • PowerCharts XT
    • FusionMaps XT
    • Collabion Charts for SharePoint
    • jQuery Plugin for FusionCharts
    • AngularJS plugin
    • ReactJS plugin
  • General Forums
    • FusionCharts Jobs and Consultation
    • FusionLounge

Found 1 result

  1. I am having a hard time understanding the load xml function via a dropdown box form. The examples I have seen (below) in the documentation work with a single button and a single XML file. Are there any examples out there with a drop down box form and multiple xml files? <html> <head> <title>Update Chart data</title> <script type="text/javascript" src="../../Charts/FusionCharts.js"> </script> </head> <body> <div id="chartContainer">Chart will load here!</div> <script type="text/javascript"><!-- var myChart = new FusionCharts( "../../Charts/Pyramid.swf", "myChartId", "400", "300", "0", "1" ); myChart.setXMLUrl("RevenueData.xml"); myChart.render("chartContainer"); function changeData() { var chartReference = FusionCharts("myChartId"); chartReference.setXMLUrl("QunatityData.xml"); } // --> </script> <input type="button" onClick="changeData();" value="Change Chart Data"> </body> </html>