与Fusion Chart重叠

时间:2010-07-20 17:16:40

标签: jquery jquery-ui fusioncharts

当我拖动元素(DIV或SPAN或任何)时,在FusionChart控件上,可拖动元素消失。有时元素属于FusionChart。我需要将元素拖到Fusion Chart控件上。这里我使用jQuery拖放。而我正拖着一个文字。解决方案是什么?

1 个答案:

答案 0 :(得分:2)

将SWF的wmode参数设置为“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);

示例代码here