FusionCharts - 图表上的 Div

发布于 2024-12-21 00:10:32 字数 132 浏览 1 评论 0原文

我有很多 FusionChart 报告,我想在上面放置一个带有一些加载消息的 div ,但 div 始终使用 z-index 保留在 flash 对象事件下!

有人已经摆脱了这个吗?

I have many reports with FusionChart and I want to put an div with some loading message over it, but the div always stay under the flash object event using z-index!

Anyone already got rid of this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

森末i 2024-12-28 00:10:32

对于 FusionChart,您可以调用 addParam 方法

var chart = new FusionCharts("...", "ChartId", "300", "140");
chart.addParam("wmode", "opaque");

For FusionChart you could call addParam method

var chart = new FusionCharts("...", "ChartId", "300", "140");
chart.addParam("wmode", "opaque");
唯憾梦倾城 2024-12-28 00:10:32

在您的 中,您需要 wmode="transparent"elemebnt,您需要有 <参数名称=“wmode”值=“透明”>

它必须在两者中才能工作,然后希望它能按您想要的方式工作:)

In your <embed> you need wmode="transparent" and <object> elemebnt, you need to have <param name="wmode" value="transparent"> </param>.

It has to be in both to work, then hopefully it'll work as you want :)

安穩 2024-12-28 00:10:32

一个简单的 Google 揭示了所有...

根据对于几个人这里,您需要

将 div 上的位置设置为相对、绝对或固定,然后将 z-index 设置为大于 Flash 内容的 z-index

,然后您需要

将 Flash 内容的 wmode 设置为透明

A simple Google reveals all...

According to several people here, you need to

set your position on the div to relative, absolute or fixed and then set the z-index greater to the z-index of the flash content

then you need to

set the wmode of the flash content to transparent

夜还是长夜 2024-12-28 00:10:32

如果您使用 PHP,在实例化类时,您应该添加带有布尔值的第五个参数,因此代码如下所示:

$FC = new FusionCharts("Pie3D",$chartwidth,$chartheight,'',1);

来自 fusion图表文档已经解释得很清楚了。

If you use PHP, when instantiating class, you should add fifth parameter with boolean value, so the code looks like this:

$FC = new FusionCharts("Pie3D",$chartwidth,$chartheight,'',1);

From fusion chart documentation has been explained clearly.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文