deeptic Report post Posted May 18, 2009 Hi, I have created a webpage with 5 different Fusion Charts. These charts are placed in 5 different iFrames. However, when the scroll across the iframes (using left & right arrow), the charts don't move along with the iFrames. There is a few seconds gap. Also, after moving, the charts stay outside the iFrame i.e. they don't look as if they are embedded in the iFrame. Can you please help! Share this post Link to post Share on other sites
FusionCharts Support Report post Posted May 18, 2009 hi, Could you please send us the that you are using? Share this post Link to post Share on other sites
FusionCharts Support Report post Posted May 18, 2009 Hi, Please also make your charts to transparent or opaque mode. Currently I suspect these are in window (default) mode. Share this post Link to post Share on other sites
deeptic Report post Posted May 19, 2009 Hi, Thanks for the reply. I am novice to Fusion Charts. Can you please guide how to change the mode to transparent/opaque. Share this post Link to post Share on other sites
deeptic Report post Posted May 19, 2009 I have understood where to set the mode. It's already set to transparent mode in the FusionCharts.js file It written as follows: setTransparent: function(isTransparent){ //Sets chart to transparent mode when isTransparent is true (default) //When no parameter is passed, we assume transparent to be true. if(typeof isTransparent=="undefined") { isTransparent=true; } //Set the property if(isTransparent) this.addParam('WMode', 'transparent'); else this.addParam('WMode', 'Opaque'); I didn't make any changes to this Share this post Link to post Share on other sites
Frank Report post Posted May 19, 2009 Is there a problem with transparency in firefox? I have been able to get transparency on in IE but am having trouble getting it on firefox. Share this post Link to post Share on other sites
deeptic Report post Posted May 19, 2009 I shall open in IE and check if I am able to scroll the charts embedded in the iFrame. Meanwhile, can somebody explain to me the function of 'Transparent / opaque mode' Share this post Link to post Share on other sites
FusionCharts Support Report post Posted May 20, 2009 Hi, Window Mode : The chart element reamins floating always above (top) of all HTML elements. Its in a different window process. Again the chart cant be set to acquire transparency in this mode. THe chart background would remain opaque always no matter what. Opaque Mode: Chart is NOT present in different window process. Intregrate as a normal HTML element. So HTML elements can come over charts. Transparent Mode : Like opaque Mode. + Prepares the chart to be set as transparent from chart's background settings. If you want to set chart to opaque mode from JavaScript please use: chartObj.setTransparent(false); Share this post Link to post Share on other sites