我使用angular-chart.js(1.0.2)和chart.js(2.5.0)并且有一个问题:当我直接悬停它时,这个点就悬停了,但当我把鼠标稍微高一点时在点上丢失了。 我使用标准配置:
$scope.labels = ["January", "February", "March", "April", "May", "June", "July"];
$scope.series = ['Series A', 'Series B'];
$scope.data = [
[65, 59, 80, 81, 56, 55, 40],
[28, 48, 40, 19, 86, 27, 90]
];
由于目前的应用角度版本,我不能使用另一版本的angular-chart.js。
有人可以帮帮我吗?
答案 0 :(得分:0)
您需要在图表选项中为intersect: false
对象设置tooltips
,就像这样....
$scope.options = {
tooltips: {
intersect: false
},
//other options goes here...
}
即使光标没有直接悬停在该点上,也会显示工具提示。