dshah Report post Posted October 8, 2008 Hello, I have a Ajax PopupControl on the same page as my Fusion real-time chart. When Ever i click to get my popup control, it hides behind the chart, instead of showing up on it. Is there any way for chaning this? Dshah Share this post Link to post Share on other sites
Pallav Report post Posted October 14, 2008 You can use chartObj.setTransparent(true); in the JS code that is used to embed the chart. Share this post Link to post Share on other sites
MPLKM Report post Posted March 30, 2009 further to this question and being a newb - where in js should I check for / set this this code Share this post Link to post Share on other sites
Dhruva Report post Posted March 31, 2009 Hello MPLKM, Welcome to the forum. The code has to be set manually, and in the HTML body. This is what it should generally look like: <script type="text/javascript"> var chart = new FusionCharts("../Charts/Area2D.swf", "ChartId", "600", "275", "0", "0"); chart.setDataURL("Data/Area2D.xml"); chart.setTransparent(true); chart.render("chartdiv"); </script> Share this post Link to post Share on other sites