yoxler

Members
  • Content count

    16
  • Joined

  • Last visited

About yoxler

  • Rank
    Junior Member
  1. Memory leak

    We are using FC 3.9 and we have discovered a memory leak. The leak has been verified in IE8 and IE11. We have a dashboard with multiple charts displaying data in real time. So we have to refresh often. Code to verify(we do not refresh 0,1sec in our dashboard, its just set to 0,1 for verification): <HTML> <script type="text/javascript" src="./FusionCharts/js/fusioncharts.js" > </script> <script type="text/javascript" src="./FusionCharts/js/fusioncharts.charts.js" > </script> <script type="text/javascript" src="./FusionCharts/js/themes/fusioncharts.theme.fint.js" > </script> <BODY> <div id="chartdiv8758" align="left"></div> <script type="text/javascript"> FusionCharts.ready(function() { var myChart8758 = new FusionCharts( { "type": "mscombidy2d", "renderAt": "chartdiv8758", "id": "myChartId8758", "width": "585", "height": "225", "dataFormat": "xml" }); myChart8758.setTransparent(true); myChart8758.setXMLData("<?xml version='1.0' encoding='ISO-8859-1' standalone='yes'?><chart></chart>"); myChart8758.render("chartdiv8758"); }); function test() { var myChart8758 = FusionCharts("myChartId8758"); myChart8758.setXMLData("<chart></chart>"); } FusionCharts.ready(function() { setInterval(test, 100); }); </script> </BODY> </HTML>
  2. Gantt and link does not work in IE8

    Thank you Vishalika! Looking forward for a solution so we can continue with our upgrade. Regards Andreas
  3. Hi, I have a problem with gantt and link attribute. We have recently upgraded from old flash charts and we just noticed that links were not working with our gantt charts. We use IE8 at the moment in our company so we cannot use any other browser. I've tried in chrome and it works just fine there. I've attached a chart where the links does not work in IE 8 but just fine in chrome. Are we doing anything wrong or is it a bug? Regards Andreas gantt.zip
  4. FusionCharts Server-side Export Handler

    Awsome! It works!! Thanks a lot!!
  5. FusionCharts Server-side Export Handler

    Hi! Sorry but I have not. A good thing is that Fusion Charts are only used in internal system and this problem was OK with the system owners. However if you can come up with any other thoughts in the matter please let me know. And if I find a solution I'll post it here. /Andreas
  6. FusionCharts Server-side Export Handler

    Hi! Not exactly the same, the first time I get this dialog(translated from Swedish): --------------------------- Windows Internet Explorer --------------------------- Internet Explorer could not fetch FCExporter.jsf from XXX. The page you requested cannot be found at this time. It may be temporarily unavailable or it may have been removed or relocated. --------------------------- OK --------------------------- And when I do it again it works. Guess it's a 404-error
  7. FusionCharts Server-side Export Handler

    Yep, same. I'm out of ideas on what it could be. I't would be better, in a solution finding perspective, that it never worked Very strange it works the second time and every time in FF.
  8. FusionCharts Server-side Export Handler

    Strange though that it works the second time. I stored the first dialog, the one with FCExporter_jsf and the file actually contains the picture. But it gets the mime-type wrong or something.
  9. FusionCharts Server-side Export Handler

    Crap.. it only occures in IE, in FF it works fine. The problem is though that our system only supports IE8.
  10. FusionCharts Server-side Export Handler

    Thanks so much for trying to help me! But that did not do the trick. I've attached two popups: First one happens when I right click and choose save as JPG. It's not correct so i click cancel(Avbryt in Swedish) And then I do the same thin again, no page relod, no nothing. Just right click and save as JPG again and then the dialog2 pops. Strange... Any other ideas?
  11. FusionCharts Server-side Export Handler

    It works better but still not exactly as it sould. The first time I right click and choose a jpg or png file, it wants to download FCExport_jsf. However, if I do the samt thing again it works! But its not so great to have to do the export twice in order to get it to work. Do you know if there is a way to initialize it somehow or perhaps a another trick? /Andreas
  12. FusionCharts Server-side Export Handler

    Thanks again for your swift response! Where do I find the references to FCExporter_IMG.jsp? I only find references to FCExporterError.jsp /Andreas
  13. FusionCharts Server-side Export Handler

    Thanks! I did have the class-files, my bad. One step closer, however I still cannot make it work. I've set the export handle to FCExporter.jsf (not JSP since we use JSF) <chart exportEnabled="1" exportShowMenuItem="1" exportAtClient="0" exportHandler="FCExporter.jsf" exportAction="download" exportFileName="RAS_chart" exportTargetWindow="_self"> This is the Info from eclipse: 2009-sep-01 08:52:35 com.fusioncharts.exporter.generators.ImageGenerator getChartImage INFO: Creating the Chart image 2009-sep-01 08:52:40 com.fusioncharts.exporter.generators.ImageGenerator getChartImage INFO: Image created successfully Any ideas? /Andreas
  14. FusionCharts Server-side Export Handler

    Hi and thank you for your fast respons!! Sorry but it did not help. I've tried both 1.5 and 1.4.2 The error message referes to ExportBean. Bad version number in .class file (unable to load class com.fusioncharts.exporter.beans.ExportBean) Doesn't this mean that the ExportBean class should be compiled with 1.5 or 1.4.2? /Andreas
  15. FusionCharts Server-side Export Handler

    Hi! Do you have the .class files as well? I'm also using 1.5 and i've tried this jar-file but it did not help. I get the following error message: Bad version number in .class file (unable to load class com.fusioncharts.exporter.beans.ExportBean) So is it possible to get the class-files? /Andreas