Chart.js:扩大点的悬停距离

时间:2017-06-19 18:25:15

标签: chart.js

是否有Chart.js选项用于增加其工具提示变为活动状态的距离?

默认情况下,一个点是"活跃"当鼠标直接悬停在某个点上时,会显示工具提示。我希望为用户提供更多的积分区域,让他们活跃起来。"

谢谢!

1 个答案:

答案 0 :(得分:3)

您可以通过将pointHitRadius属性设置为数据集的命中距离值来实现此目的,就像这样......

...
datasets: [{
      pointHitRadius: 20,
      ...
}]
...

工作示例

var ctx = document.getElementById("myChart").getContext('2d');

var myChart = new Chart(ctx, {
   type: 'line',
   data: {
      labels: ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun'],
      datasets: [{
         label: 'Rating',
         data: [1, 2, 3, 4, 5, 6],
         backgroundColor: 'rgba(209, 230, 245, 0.5)',
         borderColor: 'rgba(56, 163, 236, 1)',
         borderWidth: 1,
         pointHitRadius: 20 //set as you wish
      }]
   },
   options: {
      responsive: false,
      scales: {
         yAxes: [{
            ticks: {
               beginAtZero: true
            }
         }]
      }
   }
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.5.0/Chart.min.js"></script>
<canvas id="myChart" height="200"></canvas>