gtoogood

Members
  • Content count

    5
  • Joined

  • Last visited

Everything posted by gtoogood

  1. I am trying to use the FusionCharts.setCurrentRenderer('javascript') feature of fusion charts but keep getting this intermittent error. Sometimes it renders and sometimes it gives this error. I feel it might be something to do with the loading order of the javascript (it is a very javascript intensive system) but I need to know if it is something I am doing that is causing it. In another project this does not happen and as far as I can see i am doing it the same way. The fact that it is intermittent too makes it even more annoying. This is the error I get in the firebug console window.... TypeError: g.instanceAPI is undefined ...b.height,g);if(b.width!==void 0)g.style.width=e.width;if(b.height!==void 0)g.sty... Fusion...s.HC.js (line 103) TypeError: g[this.id] is undefined ...n"||(d=h[b=b.toString().toLowerCase()])===void 0)a.raiseError(this,"25081543","p... FusionCharts.js (line 64) Have you guys ever seen this error? When i take out the FusionCharts.setCurrentRenderer('javascript'); code the system works but with flash. I want to avoid using flash so this is required. Thanks, Geoff T
  2. Actually I figured it out It was an error in my code Thanks
  3. Hi, I am just wondering if it is possible to change the location of the icons for downloading pdf / image etc on your charts. I would like the icon in the top left corner is this possible? thanks, geoff T
  4. Hey guys, Having a problem rendering a line chart using Javascript. When rendering as flash the chart works great however when forcing it to render as javascript with "FusionCharts.setCurrentRenderer('javascript');" it fails on one of our line charts. It goes into an endless loop which in firebug prints out as ""p is undefined"... I have attached a snapshot of the graph rendered in flash and one rendered in javascript and perhaps you might know what I could be doing wrong.. This is wrapped in a jquery "tabs" div but I don't thing that is causing the issue.. well I don't actually know Currently using the following version of FusionCharts.HC.js /* FusionCharts JavaScript Library Copyright FusionCharts Technologies LLP License Information at <http://www.fusioncharts.com/license> @author FusionCharts Technologies LLP @version fusioncharts/3.2.3-release.4749 */
  5. Problem With Line Chats Rendering In Js

    Yeah all good now. I wasn't disposing of the chart before I hid the surrounding div .. if ( FusionCharts( "SomeChartID" ) ) FusionCharts( "SomeChartID" ).dispose(); Works awesome now