Divya Report post Posted July 18, 2008 (edited) Assignment Status Review Status Edited July 18, 2008 by Guest Share this post Link to post Share on other sites
Arindam Report post Posted July 19, 2008 Hi Divya, Could you please remove the space from div id and chart id? After that try again <div id='cm1_Assignment_Status_graph2' align='center'></div> <script language=javascript> var myChart = new FusionCharts("FusionCharts/Charts/FCF_Column3D.swf", "cm1_Assignment_Status_chart2" , '200', '250'); myChart.setDataXML("<graph xAxisName='' yAxisName='' showNames='1' rotateNames='1' decimalPrecision='0' formatNumberScale='-1'><set name='Unassigned' value='327' color='F6BD0F' /><set name='Assigned' /></graph>"); myChart.addParam("wmode","transparent"); myChart.render("cm1_Assignment_Status_graph2"); </script> <div id='cm1_Review_Status_graph3' align='center'></div> <script language=javascript> var myChart = new FusionCharts("FusionCharts/Charts/FCF_Column3D.swf", "cm1_Review_Status_chart3" , '200', '250'); myChart.setDataXML("<graph xAxisName='' yAxisName='' showNames='1' rotateNames='1' decimalPrecision='0' formatNumberScale='-1'><set name='Not Relevant' /><set name='Relevant' /><set name='Pending' value='327' color='8BBA00' /></graph>"); myChart.addParam("wmode","transparent"); myChart.render("cm1_Review_Status_graph3"); </script> Share this post Link to post Share on other sites
Divya Report post Posted July 20, 2008 Hi Arindam, Thanks for the reply. I removed the spaces and tried again, but it didn't help. It still does not show up on IE with HTTPs. Any other thing that I can verify or look for. Maybe some IE setting or something. I am new at using Fusion Charts and evaluating it for our product. Any help will be appreciated. Thanks, Divya. Share this post Link to post Share on other sites
Arindam Report post Posted July 21, 2008 Hi Divya, will you send us IE screen shot and also your last modified code?? Share this post Link to post Share on other sites
Divya Report post Posted July 21, 2008 The modified code is as follows: I am attaching the complete file and screenshot as an attachment. getGraphsInformation2.txt Share this post Link to post Share on other sites
Divya Report post Posted July 22, 2008 I figured out the problem. It was the problem with the headers. Even though the html file was setting the headers for caching, the server was overwriting it no-cache. Modifying the server to send cache headers in case .swf file solved the problems. Thanks to jodde who pointed me to the right direction. -Divya. Share this post Link to post Share on other sites