Sign in to follow this  
comiz

Flash over html

Recommended Posts

Hello,

 

 

 

I'm trying to problem with the swf. The flash is on top of the menu in my application. To address would have to use html directly with

param name="wmode" value="opaque" />
, but the export to pdf does not work.

 

 

 

Would pass

param name="wmode" value="opaque" />
using javascript to resolve the problem of flash over html?

Share this post


Link to post
Share on other sites

Hi,

 

 

 

Could you please use myChart.addParam('wmode', 'opaque'); code in JavaScript and try again.

 

 

 

Example:

 

 

 

[script type=text/javascript]

 

 

 

var myChart = new FusionCharts("../../FusionCharts/Column2D.swf", "myChartId", "500", "300", "0", "1");

 

myChart.setDataURL("SimpleExample.xml");

 

myChart.addParam('wmode', 'opaque');

 

myChart.render("chartdiv");

 

 

 

[/script]

Share this post


Link to post
Share on other sites
Guest Basundhara Ghosal

Hi,

You are most welcome in the forum. :)

Glad that could help you.

Happy FusionCharting.

Share this post


Link to post
Share on other sites

hi,

 

 

 

I have same problem and I want to add parameter tag to solve this.() but I cant use javascript code because I am using ASP.NET Code to render chart.

 

 

 

ie.,

 

 

 

string output=FusionCharts.RenderChartHTML("../FusionCharts/AngularGauge.swf", "", strXML.ToString(), "chart1", "310", "250", false);

 

 

 

How I can add a parameter tag in this case?

 

 

 

 

 

Please help me...Its very urgent...

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this