FusionCharts Forum: dhtml menu hide my flash graph - FusionCharts Forum

Jump to content

Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic

dhtml menu hide my flash graph

#1 User is offline   shamirb 

  • Forum Newbie
  • Group: Members
  • Posts: 2
  • Joined: 26-July 07

Posted 01 August 2007 - 09:30 AM

Hi,

I've dhtml menu (from http://dhtml-menu.com/) and fusion graph in the same php page.

my menu is a dop-down menu, when clicking the menu - the sub menu go behind the flash chart, and can not been seen.

I know that my solution will be found in the menu code or in the graph code, if it's related to the dhtml menu - then I'm sorry for posting this issue here.

Thank You

Shamir

0

Other Replies To This Topic

#2 User is offline   Pallav 

  • FusionCharts Team
  • Group: Administrators
  • Posts: 2386
  • Joined: 08-December 06

Posted 01 August 2007 - 04:17 PM

FusionCharts is a set of Flash movies, and as kind of plugins, are rendered in a special way by the browsers (a method known as "windowed"), making them the topmost objects in a page.

To allow DHTML objects appear over a Flash movie just add this parameter:
WMode=Transparent
to the Flash <object> tag.

It should look like this:
<param name="WMode" value="Transparent">

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>

If you're using the FusionCharts JavaScript class to embed your charts, you may download the updated JavaScript class from http://www.fusioncharts.com/Downloads/FusionChartsWMode.zip

Thanks,
Pallav Nadhani
Co-founder & CEO, FusionCharts Team
0

Other Replies To This Topic

#3 User is offline   paul.ansell11 

  • Forum Newbie
  • Group: Members
  • Posts: 4
  • Joined: 16-August 07

Posted 18 March 2008 - 06:54 AM

Hi

I'm having the same problem with the above using Visual studio web developer 2008/ASP.NET 2.0 (VB).

I used to use asp and could edit the file in:

FusionChartsCodeASPIncludesFusionCharts.asp

I'm now trying to do the same thing to edit:

FusionChartsCodeVB_NETsrcFusionCharts.vb

I can edit the file and add the following parameter within the RenderChartHTML Function.

strFlashVars.Append(("<param name=""wmode"" value=""transparent"" />" & Environment.NewLine))

but this still doesn't work. I think I am refering to the wrong file/function because if I change the function name to RenderChartHTML_Test my code still renders the chart.

Any idea what I'm doing wrong?

Many Thanks
Paul

0

Other Replies To This Topic

#4 User is offline   Sudipto Choudhury 

  • Supreme Being
  • Group: Administrators
  • Posts: 1886
  • Joined: 19-March 07

Posted 19 March 2008 - 04:48 AM

Hi Paul,

Could you please tell us which method you are using? If you are using RenderChart() then you need to edit FusionCharts.js and add this.addParam("wmode","opaque"); or addParam("wmode","transparent"); [ both 'transparent' and 'opaque' will work] near lines where this.addParam occurs.

If you are using RenderChartHTML() you need to change the vb code as you have rightly shown in your post, recompile it to FusionCharts.dll and replace the old FusionCharts.dll in the BIN folder.

Regards,

Sudipto Choudhury
FusionCharts Team

Follow us on Twitter

I code, therefore I am.

0

Other Replies To This Topic

#5 User is offline   paul.ansell11 

  • Forum Newbie
  • Group: Members
  • Posts: 4
  • Joined: 16-August 07

Posted 19 March 2008 - 10:31 AM

Hi,

Yes all seems to be sorted now. I am using the RenderChartHTML function, but wasn't reconpiling the project when I ran the page. As soon as I rebuilt the project everything worked as you suggested.

Many Thanks
Paul

0

Other Replies To This Topic

Page 1 of 1
  • You cannot start a new topic
  • You cannot reply to this topic