gonzavillar

Members
  • Content count

    3
  • Joined

  • Last visited

About gonzavillar

  • Rank
    Forum Newbie
  1. Printing/Exporting chart not working in IE11

    Hi Sashibhusan, thanks for your help! I was finally able to address both issues. - Gonzalo
  2. Printing/Exporting chart not working in IE11

    Hi, thanks for your response. I was able to create the chart using your approach and they print and export fine. However, a couple of issues came up: 1 - All the white spaces in my data are being filled by plus signs (+) 2 - This approach doesn't work when using update panels Any suggestion on how to address those issues? Thanks!
  3. Hello, I have a website that's been using FusionCharts for a while without any issues. But now I just realized that with IE11, the export functions I have built are no longer working. The printing and exporting works fine in all other version of IE, Firefox and Chrome, and even on IE11 when compatibility view is turned ON. I'm building the chart server-side like this: Dim chartHtml = FusionCharts.RenderChartHTML("Charts/FusionCharts/ScrollColumn2D.swf?registerWithJS=1", "", xml.ToString(), "MyChart", "100%", "350", False, True, True) I've noticed that when on IE10 or IE11 compatibility view, this renders an <object> element, but on IE11 it creates an <embed> element. And then the javascript functions I've been using are these: function printChart() { var chartToPrint = document.getElementById('MyChart'); chartToPrint.print(); } function ExportMyChartPDF() { var chartObject = document.getElementById('MyChart'); if (chartObject.hasRendered()) chartObject.exportChart({ exportFormat: 'PDF' }); } function ExportMyChartJPG() { var chartObject = document.getElementById('MyChart'); if (chartObject.hasRendered()) chartObject.exportChart({ exportFormat: 'JPG' }); } These functions throws errors saying the object does not support the "print" method, or the "hasRendered". "Object doesn't support this property or method" Do you know why is this happenning and if there's a way to fix it? Thanks.