tobyjoiner Report post Posted August 24, 2010 I have the following haml = render_chart '/chart/MSCombi3D.swf', '', @total_xml, "myNextHTML1", 800, 400, 0, 1 = render_chart '/chart/MSCombi3D.swf', '', @cattle_xml, "myNextHTML2", 800, 400, 0, 1 = render_chart '/chart/MSCombi3D.swf', '', @hedging_xml, "myNextHTML3", 800, 400, 0, 1 This is causing them to output as follows: myNextHTML1 myNextHTML2 myNextHTML3 myNextHTML1 myNextHTML1 myNextHTML2 myNextHTML1 myNextHTML2 myNextHTML3 I can't figure out what is going on, is there an issue with render_chart or am I just an idiot and did something wrong? Share this post Link to post Share on other sites
tobyjoiner Report post Posted August 24, 2010 Just to add to this: I changed it to just one chart and am still getting 2 charts showing on the page. I tried changing it to render_chart_html also. Share this post Link to post Share on other sites
tobyjoiner Report post Posted August 24, 2010 (edited) I figured this out... If anyone else runs across this problem, just take out the = to make: = render_chart '/chart/MSCombi3D.swf', '', @total_xml, "myNextHTML1", 800, 400, 0, 1 become: render_chart '/chart/MSCombi3D.swf', '', @total_xml, "myNextHTML1", 800, 400, 0, 1 Edited August 24, 2010 by Guest Share this post Link to post Share on other sites
Sanjukta Report post Posted August 24, 2010 Hi, Glad that your issue is resolved. Thanks for sharing. Happy FusionCharting! Share this post Link to post Share on other sites