|
|
|
FusionCharts Team
      
Group: Administrators
Last Login: 10/3/2008 2:42:18 AM
Posts: 2,117,
Visits: 498
|
|
It should be in the HTML after the place where you specify ?dataURL=yourData.xml
Thanks, Pallav Nadhani FusionCharts Team
|
|
|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 2/27/2008 10:14:49 AM
Posts: 3,
Visits: 12
|
|
| This also happens in Safari. If the graph renders outside of where your window is currently positioned, it will render improperly like the previous posters showed, unless you use the javascript imbed
|
|
|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 9/9/2008 1:41:47 AM
Posts: 3,
Visits: 23
|
|
Thank you very match Pallav!
This solution is fixed the rendering problem on IE.
|
|
|
|
|
Junior Member
      
Group: Forum Members
Last Login: 9/16/2008 12:22:38 PM
Posts: 10,
Visits: 25
|
|
| I am experiencing the same exact problem and have to set width="360" height="310" or whatever number. The chart renders all mushed together except a few words of the caption are visible, but no chart renders. IE7, FP9, FC3Enterprise. The only fix is to manually "Rewind->Play". -D
|
|
|
|
|
Supreme Being
      
Group: Moderators
Last Login: Yesterday @ 2:58:00 AM
Posts: 811,
Visits: 1,289
|
|
| Hi, Could you please try rendeing the chart(s) after the HTML page rener is comeplete? can use this code:
<script type="text/javascript"> if (window.addEventListener) { window.addEventListener("load", creatreChart, false); } else if (window.attachEvent) { window.attachEvent("onload", createChart); } function createChart() { var chart = new FusionCharts("Column2D.swf?noCache=" + new Date().getMilliseconds(), 'ChartId', '100%', '275', '0', '0'); chart.setDataXML("<chart><set value='10'/></chart>"); chart.render("chartdiv"); } </script>
Regards,
Sudipto Choudhury FusionCharts Team
|
|
|
|
|
Forum Newbie
      
Group: Forum Members
Last Login: 9/13/2008 11:09:11 AM
Posts: 1,
Visits: 4
|
|
Hi,
This fix helps, as it reduces the amount of times the chart does not render properly, but it still happens occasionally. For some users, it's as much as 25% of the time.
It seems like when it happens, it is usually trying to render the chart too soon, as the image pops up much faster than when the properly rendered chart appears.
Is it possible to detect a bad render programmatically and force a re-render?
Thanks
Tim
|
|
|
|
|
FusionCharts Team
      
Group: Administrators
Last Login: 10/3/2008 2:42:18 AM
Posts: 2,117,
Visits: 498
|
|
Tim,
There's no way to programatically detect it - the only way to solve it for sure is to NOT use % width/height, but use pixel width/height.
Thanks, Pallav Nadhani FusionCharts Team
|
|
|
|