Rajavelu

Dragnodechart Flash Issue In Chrome?

Recommended Posts

Hi I am using Drag node chart, and zoom line chart in a single page.

When i click on a node the detailed line chart will open in popup div.

This is working fine in firefox, but in chrome popup div collapse,

Also the css not working fine. Why this problem occured?

 

Note: If drag node chart not placed or replaced with any other charts , then popup div working fine in chrome. (image 5&6)

 

Please find the attached images:

image 1      - before open popup up,

image 2      - open in firefox

image 3&4  - open in chrome

 

post-38320-0-99724900-1365142801_thumb.png

post-38320-0-41632100-1365142827_thumb.png

post-38320-0-81943600-1365142847_thumb.png

post-38320-0-68055200-1365142866_thumb.png

post-38320-0-51924400-1365143439_thumb.png

post-38320-0-60395300-1365143465_thumb.png

Share this post


Link to post
Share on other sites
Guest Sumedh

Hi,

 

Welcome to FusionCharts Forum!

 

Can you provide some information on following points?

 

> In what control are you trying to render the charts?

 

> Can you provide us the sample code and charts XML? or can you please share the live URL of the same?

Share this post


Link to post
Share on other sites

My jsp file:

 


<style>
.popup-div{
    position: absolute; width:99%; background-color: #fff; border:3px solid #a9a9a9; margin-top: 0%;
}
</style>

<script>
    function closepopup(){
        document.getElementById("popupdiv").style.display='none';
    }
    
    function showPopup() {
        var popup = document.getElementById("popupdiv");
        popup.style.display = 'block';
    }
</script>
</head>

<body>
<div align="center" class="popup-div" id="popupdiv" style=" display: none">    
   <a href="javascript:closepopup()" style=" float: right">  Close </a>
   <table align="center" id="linkdetailsdiv" style=" width: 100%; background-color: #fff8dc;">
       <tr>
           <td align="center">
               //render a line chart here
           </td>
       </tr>
   </table>  
</div>

 <div align="center" style="width:100%; height: 12px; color: #0078ff; font-size: 11px; margin-top: 1%"><a href="javascript:showPopup()">show popup div</a></div>

<div id="chart" align="center" style="margin-top: 1%">
   // reder another chart here
</div>
 
</body>

Share this post


Link to post
Share on other sites
Guest Sumedh

Hi Rajavelu,

 

Could you please try setting the z-index property for pop-up div?

 

Specify the z-index property as "9999".

 

Ref. Code:

 

<style>

.popup-div{

position: absolute; width:99%; background-color: #fff; border:3px solid #a9a9a9; margin-top: 0%; z-index: 9999;

}

</style>

 

Hope this helps!

Share this post


Link to post
Share on other sites
 Thank you Sumedh,

 

But Still (after set z-index) I face that issue.

 

I think the problem may be due to browser, Because in firefox its works fine,

I am using chrome (versions: 26 and 27) in ubuntu machine.

 

Problem not only in popup chart, see the attached images:

 

image1: curser not on chart , calendar shows good,

image2: curser on chart, calendar collapsed

post-38320-0-99446200-1365578115_thumb.png

post-38320-0-91445200-1365578133_thumb.png

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