dequin Report post Posted January 16, 2009 Hi there, I've been using your excelent product, FusionCharts ,the free version. Working with it, I'd found out it doesn't render a W3C Standard XHTML Code, wich for me was a problem. I worked out a solution and I want to share it with you. If you find it does present any problem please let me know . The solution, for me, was to replace the getSWFHTML function in FusionCharts.js with this: getSWFHTML: function() { var swfNode = ""; swfNode = ''; swfNode += ''; swfNode += ''; swfNode += ''; var params = this.getParams(); for(var key in params){ swfNode += ''; } var pairs = this.getVariablePairs().join("&"); if (pairs.length > 0){ swfNode += ''; } swfNode += ''; return swfNode; } It does render valid XHTML and It works in Firefox, Safari and IE6 Well, I thank you for the excelent work and present you with this tiny piece of code. Be Well and Good Bye. Iv Share this post Link to post Share on other sites
Rahul Kumar Report post Posted January 17, 2009 Hi, Thanks for sharing your code with us. Share this post Link to post Share on other sites