我有很多图表,并且需要在鼠标悬停在图表上之后将X轴添加到具有更改值的图例中,有什么方法可以简单地实现吗?我必须用以下方法破解它:
$('.XAxis').remove();
var first =
'<td class="legendColorBox"><div style="border:1px solid #ccc;padding:1px"><div style="width:4px;height:0;border:5px solid blue;overflow:hidden"></div></div></td>' +
'<td class="legendLabel">' + chartViewModel.XVariable + '</td>';
$('#' + placeholder + " table > tbody").prepend("<tr class='XAxis'>" + first + "</tr>");
$('#' + placeholder).bind("plothover", function (event, pos) { // code when calculate values }
它可以工作,但是我在引导选项卡中有图表,然后单击带有图表的另一个选项卡,然后回到缺少图表添加图例的行