FusionCharts - 图表上的 Div
我有很多 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
对于 FusionChart,您可以调用 addParam 方法
For FusionChart you could call addParam method
在您的
中,您需要
wmode="transparent"
和它必须在两者中才能工作,然后希望它能按您想要的方式工作:)
In your
<embed>
you needwmode="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 :)
一个简单的 Google 揭示了所有...
根据对于几个人这里,您需要
,然后您需要
A simple Google reveals all...
According to several people here, you need to
then you need to
如果您使用 PHP,在实例化类时,您应该添加带有布尔值的第五个参数,因此代码如下所示:
来自 fusion图表文档已经解释得很清楚了。
If you use PHP, when instantiating class, you should add fifth parameter with boolean value, so the code looks like this:
From fusion chart documentation has been explained clearly.