Sign in to follow this  
gismo

Chart div-tag won't respect z-index

Recommended Posts

Hi guys,

I'm trying to show a pop-up-div on my webpage, and some of the pop-up-div shadows the chart, but not matter how i set the z-index's of the divs the chart is on top - is there any way to override this so my pop-up can be "on top" ?

Regards

Peter

Share this post


Link to post
Share on other sites

Hi Peter,

Could you please try calling the follwoing method, in case you are using FusionCharts JavaScript class to embed the chart?

Ref.- <div id="chartdiv" align="center">The chart will appear within this DIV. This text will be replaced by the chart.</div>

<script type="text/javascript">

var myChart = new FusionCharts("../FusionCharts/Column3D.swf", "myChartId", "900", "300", "0", "0");

myChart.setDataURL("Data.xml");

  myChart.setTransparent(true);

  myChart.render("chartdiv");

  </script>

</div>

For further details on the same, please refer to the following link:

Ref.- http://www.fusioncharts.com/docs?/FAQ.html

Hope this helps. :)

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this