Sign in to follow this  
Bebetto

Set wmode for chart

Recommended Posts

Hello.

 

How I can set wmode for the chart flash object. For example i need: embed wmode = "opaque" ................. /> in html.

 

In code I use RenderChartALL function from ASP.NET example somethig like this:

 

 

 

builder.AppendFormat("var chart_{0} = new FusionCharts("{1}", "{0}", "{2}", "{3}", "{4}", "{5}");" + Environment.NewLine,

 

builder.AppendFormat("chart_{0}.setTransparent({1});" + Environment.NewLine, chartId, "true");

Edited by Guest

Share this post


Link to post
Share on other sites
Guest Madhumita

Hello,

In order to support Mozilla-based browsers and other browsers, such as Safari, you should also include the wmode parameter in the <embed> tag, like this: 

<embed wmode="transparent" .......></embed>

 

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