Sign in to follow this  
Clive

window appears under the map instead of over it.

Recommended Posts

I have a world map on an asp.net page, and a window that opens on clicking one of the regions.

To make this a slick-looking window I am using Telerik RadWindow control to display

content pulled from a database.

All is perfect... except that where the window overlaps the map, it is in the layer behind the map.

How can I set the z-index of the map so that this does not happen?

Thanks

Clive

Share this post


Link to post
Share on other sites
Guest Basundhara Ghosal

Hi  Clive,

Please try setting the Transparency of the chart to 'true'.

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>

I 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