I still have a large portion of my clients still using IE6, so I still need this functionality working. I am currently using javascript to generate my charts. Here is sample of the code: This working in all modern browsers such as FF, Opera, Safari, IE7+, But IE6, the chart shows up, but not exportable:
Loading Chart...
// Render the chart (See documentation for explanation of the codes below)
var chart_part = new FusionCharts("../FusionCharts/Charts/Column2D.swf", "chart_part", "530", "300", "0", "1");
chart_part.setDataXML("");
chart_part.render("part");
FusionCharts Export Handler Component
var myExportComponent = new FusionChartsExportObject("fcExporter_part", "../FusionCharts/Charts/FCExporter.swf");
myExportComponent.Render("fcexp_part");