Sreejesh Kumar
Sreejesh Kumar

Reputation: 2499

Overlapping with Fusion Chart

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 ?

Upvotes: 1

Views: 1456

Answers (1)

Daniel R
Daniel R

Reputation: 1429

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.

Upvotes: 2

Related Questions