dequin

Members
  • Content count

    1
  • Joined

  • Last visited

Everything posted by dequin

  1. 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