フュージョン チャート スワップを実行しようとしましたが、ASP はそれが好きではありません。したがって、次善の策は、フュージョン チャートをレンダリングしてから、onmousedown でチャートを画像に置き換えることです。これだけでもうまくいきません。コードの周りに div を追加して id を使用しようとしましたが、スワッピングが機能しません。document.popChartDiv.src で「popChartDiv」を使用しましたが、この ID が Literal3 のレンダリングを呼び出しています。その下にある 2 つの div (testimage.png と testimage1.png) で Literal3 を切り替える方法がわかりません。チャートが焦点であり、画像がチャートを上書きできないようです。z-index も使用してみましたが、うまくいきませんでした。だから私は立ち往生しています。
<div style="width:798px; margin-left:auto; margin-right:auto; height:250px; float:left; overflow:hidden;" id="popChartDiv">
<script src="../../Dashboard/Charts/FusionCharts.js" type="text/javascript"></script>
<div id="popChartContainer"></div>
<asp:Literal ID="Literal3" Visible="true" runat="server"></asp:Literal>
<div id="line3ChartContainer"></div>
<asp:Literal ID="Literal9" Visible="true" runat="server"></asp:Literal>
<img src="/images/testimage.png" width="798" height="250" name="swap"/>
</div>
<div style="width:38px; height:250px; float:left;">
<img src="../../images/labortab.png" style="float:left; width:38px; height:125px;" id="labor" onmousedown="document.swap.src='/images/testimage.png';"/>
<img src="../../images/odctab.png" style="float:left; width:38px; height:125px;" id="odc" onmousedown="document.swap.src='/images/testimage1.png';"/>
<script type="text/javascript">
$('#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');
});
</script>
</div>