equilibrium Report post Posted January 9, 2009 Hi, You can see my pb on the attached jpg. I highlight lines who generate my positionning problem. But I don't know where does she cames. I already use the same code in anothe page and it works done. Thanks for help. My code below. <?php //Create an XML data document in a string variable $strXML_Act1 = ""; for ($k = 0; $k < $i-1; $k++) { if ($val[$k] != 0) { $strXML_Act1 .= "";} } $strXML_Act1 .= ""; echo renderChartHTML("../FusionWidgets/Charts/Pie3D.swf", "", $strXML_Act1, "monDivAct1", 450, 300, false, false);?> Share this post Link to post Share on other sites
Rahul Kumar Report post Posted January 9, 2009 Hi I am afraid, renderChartHTML method just inserts an HTML Object tag into the page, it does not replace the DIV contains & also you have to provide an unique chart id into that method not the DIV id, where as if you use renderChart method then only the DIV contains will be replaced by the JavaScript code for the chart. Share this post Link to post Share on other sites
equilibrium Report post Posted January 9, 2009 Thanks for response. I use renderChart method like I test since I post my question. It works well. Thanks for response. Share this post Link to post Share on other sites