mightywah

Members
  • Content count

    6
  • Joined

  • Last visited

Everything posted by mightywah

  1. Html5Exporthandler

    Hi Many users of my site are not using Flash. When these users (pure Javascript) click the export button I wish to send the svg to my server (I'm happy to let Flash handle exports where possible) I chart attributes thus; exportAtClient='1' exportHandler='fcExporter1' html5ExportHandler='https://xxxx.nsw.edu.au/cgi-bin/LANSAWEB?w=RAPGRAPH+r=CONVERT+part=V4' exportFileName='Band Analysis' \ But when I click the export button data is sent to the highcharts server no matter what. I've also tried if( typeof chartObj1._overrideJSChartConfiguration === 'function'){ // pass exporting configuration module chartObj1._overrideJSChartConfiguration({ exporting:{ url: '../export/JSChartExport/index.php //path of HC exporter } });} but this does nothing. I'm using version 322
  2. Html5Exporthandler

    Further to the above. Iv'e tried everything I can (ExportHadler, html5ExportHandler, _overrideJSChartConfiguration) Nothing will stop FusionCharts from sending to export.HighCharts.com I'm using Current Version:FusionCharts XT (v3.2.2) Service Release 2 (Released on 25th January, 2012) Help, I can't make any progress on this!
  3. Fusioncharts & Ie8

    Hi (I posted this earlier in the wrong place - sorry!). I have series of FusionCharts all of which work correctly in Flash mode and in Javascript Native mode in all the modern browsers except for IE8. In IE8 with no Flash installed the chart starts to render (I can see the background and captions etctera but no bars). Then a Javascript Error occurs FusionChartsExportComponentjs. line 852 character 21 sync: function (arc, tgt) for (var item in arc) { tgt (itm) = src(itm); /// Error here Object expected. } This occurs several times then in FusionCharts.HC.js line 3895 character 17 'moduleCmdQueue[...]' is null or not an object. I have attached the HTML from the page FusionChart Crash.txt
  4. Fusioncharts & Ie8

    Hi Initially I though this was an IE problem but when I added FusionCharts.setCurrentRenderer('javascript'); and displayed my chart in FireFox 10 It does not render correctly. As you can see in the attached image the tops of the 3d bars are renderered but mot the vertical bars. This is using MSColumn3D.swf - if I use MSColumn2D.swf then no bars are rendered at all. The error 'tgt is undefined' in FusionChartsExportsComponents.js ( I don't think this is the renering problem). * Syncs two property-lists * @param src object: Source property-list * @param tgt object: Target property-list */ sync: function(src, tgt) { for(var itm in src) { tgt[itm] = src[itm]; } }, I am using FusionCharts 3.2.2. I have seen elsewhere in this forum that there is a service release but I cannot find anywhere on your website where I can download this (we are paying, government customers - NSW Board of Studies Australia). Should resubmit this to support? I don't understand the issue about relative paths. My paths are correct and I don't need to set them relatively.
  5. Hi I have series of FusionCharts all of which work correctly in Flash mode and in Javascript Native mode in all the modern browsers except for IE8. In IE8 with no Flash installed the chart starts to render (I can see the background and captions etctera but no bars). Then a Javascript Error occurs FusionChartsExportComponentjs. line 852 character 21 sync: function (arc, tgt) for (var item in arc) { tgt (itm) = src(itm); /// Error here Object expected. } This occurs several times then in FusionCharts.HC.js line 3895 character 17 'moduleCmdQueue[...]' is null or not an object. I have attached the HTML from the page FusionChart Crash.txt
  6. I need to produce a bubble chart with a diagonal line going from bottom left to top right (bubbles along the line are in agreement). I can do this with a trendline but the client wants a shaded zone either side of this diagonal (indicating bubbles that are within 10% of agreement) - so I need a diagonal trendzone. Is this possible?