我正在使用javascript库高图创建可视化图表。我用一些假数据创建了我的图表。我想知道如何使用图表数据来触发图像幻灯片。因此,如果我将鼠标悬停在图表中某个点上的数据上,相应的图像将水平滑动到页面的中心。这是我目前为止的一些JavaScript代码。
<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>
<div id="container" style="width:100%; height:400px;"></div>
<script type="text/javascript">
$(function () {
$('#container').highcharts({
title: {
text: 'Dive Log',
x: -20 //center
},
subtitle: {
text: 'example',
x: -20
},
xAxis: {
title: {
text: 'Time',
categories: ['5', '10', '15', '20', '25', '30',
'35', '40', '45', '50', '55', '1 hr']
}
},
yAxis: {
title: {
text: 'Depth in Meters'
},
plotLines: [{
value: 0,
width: 1,
color: '#808080'
}]
},
tooltip: {
valueSuffix: '°C'
},
legend: {
layout: 'vertical',
align: 'right',
verticalAlign: 'middle',
borderWidth: 0
},
series: [ {
data: [-0.2, 0.8, 5.7, 11.3, 17.0, 22.0, 24.8, 24.1, 20.1, 14.1, 8.6, 2.5]
}],
});
});
</script>
答案 0 :(得分:4)
您可以在系列点上使用events.mouseOver和events.MouseOut来完成此操作: http://api.highcharts.com/highcharts#plotOptions.series.point.events.mouseOver http://api.highcharts.com/highcharts#plotOptions.series.point.events.mouseOut
在其回调功能中,您可以触发“幻灯片”到您的图片:
events: {
mouseOver: function () {
$(".img1").trigger("slideIn");
},
mouseOut: function () {
$(".img1").trigger("slideOut");
},
}
在您的jQuery中,您可以查看触发器选项,例如:
$('.img1').on("slideIn", function () {
$(this).animate({
opacity: 1,
left: 155
});
});
$('.img1').on("slideOut", function () {
$(this).animate({
opacity: 0,
left: -550
});
});