1

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

4

1 回答 1

2

将 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);

示例代码在这里

于 2010-07-20T18:35:39.830 回答