与融合图重叠

发布于 2024-09-10 19:24:12 字数 146 浏览 5 评论 0原文

当我在 FusionChart 控件上拖动元素(DIV 或 SPAN 或任何元素)时,可拖动元素会消失。有时,这些元素位于 FusionChart 下。我需要将元素拖动到 Fusion Chart 控件上。在这里,我使用 jQuery 进行拖放。我正在拖动文本。解决办法是什么?

While I drag an element (DIV or SPAN or any ), over the FusionChart control, the draggable element disappears. Sometimes the elements comes under the FusionChart. I need to drag the element over the Fusion Chart control. Here I am using Drag and Drop using jQuery. And i am dragging a text. What is the solution ?

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

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

发布评论

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

评论(1

空城旧梦 2024-09-17 19:24:12

将 SWF 的 wmode 参数设置为“透明”。

var Chart1 = new FusionCharts(this.chart, "ChartId1", this.width, this.height);
Chart1.addParam("WMode", "Transparent"); // this line is the one you're looking for
Chart1.setDataXML(this.dataxml);
Chart1.render(this.chart1div);

示例代码此处

Set the SWF's wmode parameter to "transparent".

var Chart1 = new FusionCharts(this.chart, "ChartId1", this.width, this.height);
Chart1.addParam("WMode", "Transparent"); // this line is the one you're looking for
Chart1.setDataXML(this.dataxml);
Chart1.render(this.chart1div);

Example code here.

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