ariagreg

Members
  • Content count

    4
  • Joined

  • Last visited

About ariagreg

  • Rank
    Forum Newbie
  1. Fusioncharts & Ie 64 Bit

    Thanks, I was able to use DataLoadRequested and DataLoadRequestedCompleted listeners to my advantage.
  2. Fusioncharts & Ie 64 Bit

    I was able to fix my issue with FusionCharts._fallbackJSChartWhenNoFlash();. However, I have a dropdown list that when on change it reloads the chart with new data. How can I add a loading image to the chart to show that a call was actually made and that the data is loading?
  3. Fusioncharts & Ie 64 Bit

    I am unable to load any flash charts in IE 64 bit for versions 7,8,9,9 compatibility. It doesn't even fail over to JavaScript charts in the FusionCharts.js. Is there a fix for this? I was able to open up 32 bit IE and everything worked fine. I tried searching for information regarding this but was unable to find any information.
  4. Loading Image

    I am using a function to switch between data. However the data takes awhile to load and there isn't a "LOADING" message that pops up. How can I add a loading message in the chart so the user knows its processing. Here is my fucntion. function changeData() { var chartReference = FusionCharts( "chart_location" ); chartReference.setXMLUrl ('url_to_process_page); } in the examples (http://www.fusioncharts.com/docs/JavaScript/JS_ChangeData.html) the chart will actually show a message for updating data.