Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>If you are rendering Flash based charts, it might be that the window mode (<code>wMode</code>) is set to <code>window</code>. There is an <a href="http://helpx.adobe.com/x-productkb/multi/swf-file-ignores-stacking-order.html" rel="nofollow">Adobe help article on SWF stacking order</a> that states that the z-Index of SWF objects are ignored when window mode parameter is set to <code>window</code>.</p> <p>In pure ASP.NET (C#), if you are using the <code>RenderChart</code> method, then setting the ninth parameter to true (or false) should help you. Refer to relevant section in the <a href="http://docs.fusioncharts.com/charts/contents/guide-for-web-developers/csnet/CS_BasicExample.html" rel="nofollow">creating first chart using C# documentation article of FusionCharts</a>.</p> <p>In case you are more comfortable working with JavaScript, you may try calling <code>setTransparent(false);</code> on chart to set wMode to opaque or transparent. </p> <p>Assuming that your chart id is <code>line3Chart</code>, the code would be</p> <pre><code>&lt;script type="text/javascript"&gt; // Add this code snippet. Make sure to replace // "line3Chart with correct chart id FusionCharts("line3Chart").setTransparent(false); $('#labor').hover(function () { $(this).attr('src', '/images/labortabhover.png'); }, function () { $(this).attr('src', '/images/labortab.png'); }); $('#odc').hover(function () { $(this).attr('src', '/images/odctabhover.png'); }, function () { $(this).attr('src', '/images/odctab.png'); }); &lt;/script&gt; </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload