how2j.cn

步骤 1 : 交叉点   
步骤 2 : 非交叉点   
步骤 3 : 出现位置-中间   
步骤 4 : 回调函数   

默认就是这样,需要把鼠标放在交叉点上才会显示提示信息。

tooltips: {
intersect: true,
},

intersect的值不写就是默认 true
运行效果
<script src="https://how2j.cn/study/js/chartjs/2.8.0/chart.min.js"></script> <div style="width:400px;margin:0px auto"> <canvas id="myChart" ></canvas> </div> <script> var ctx = document.getElementById('myChart').getContext('2d'); var myChart = new Chart(ctx, { type: 'line', data: { labels: ['红', '蓝', '黄', '绿', '紫', '橙'], datasets: [ { label: '示例1', data: [12, 19, 3, 5, 0, 3], borderColor:'blue', backgroundColor:'skyBlue', borderWidth: 1, fill: false, yAxisID: 'y-axis-1', }, { label: '示例2', data: [182, 51, 133, 54, 105, 96], borderColor:'red', backgroundColor:'pink', borderWidth: 1, fill: false, yAxisID: 'y-axis-2', }, ] }, options:{ scales:{ yAxes: [{ type: 'linear', display: true, position: 'left', id: 'y-axis-1', }, { type: 'linear', display: true, position: 'right', id: 'y-axis-2', gridLines: { drawOnChartArea: false } }], }, tooltips: { intersect: true, }, } }); </script>


源代码
1. 双击选中单词 2. 三击选中整行 3. CTRL+F 查找 4. F8 全屏编辑,再次点击恢复
渲染中 渲染完成
效果
intersect 修改成 false, 就表示鼠标移动到图表就会出现提示信息了。 nearest 表示显示最近的一根线的信息。

tooltips: {
mode: 'nearest',
intersect: false,
},
运行效果
<script src="https://how2j.cn/study/js/chartjs/2.8.0/chart.min.js"></script> <div style="width:400px;margin:0px auto"> <canvas id="myChart" ></canvas> </div> <script> var ctx = document.getElementById('myChart').getContext('2d'); var myChart = new Chart(ctx, { type: 'line', data: { labels: ['红', '蓝', '黄', '绿', '紫', '橙'], datasets: [ { label: '示例1', data: [12, 19, 3, 5, 0, 3], borderColor:'blue', backgroundColor:'skyBlue', borderWidth: 1, fill: false, yAxisID: 'y-axis-1', }, { label: '示例2', data: [182, 51, 133, 54, 105, 96], borderColor:'red', backgroundColor:'pink', borderWidth: 1, fill: false, yAxisID: 'y-axis-2', }, ] }, options:{ scales:{ yAxes: [{ type: 'linear', display: true, position: 'left', id: 'y-axis-1', }, { type: 'linear', display: true, position: 'right', id: 'y-axis-2', gridLines: { drawOnChartArea: false } }], }, tooltips: { mode: 'nearest', intersect: false, }, } }); </script>


源代码
1. 双击选中单词 2. 三击选中整行 3. CTRL+F 查找 4. F8 全屏编辑,再次点击恢复
渲染中 渲染完成
效果
步骤 3 :

出现位置-中间

edit
有时候要显示多根线的信息,并且出现在中间位置,那么就可以使用 index

tooltips: {
mode: 'index',
intersect: false,
},
运行效果
<script src="https://how2j.cn/study/js/chartjs/2.8.0/chart.min.js"></script> <div style="width:400px;margin:0px auto"> <canvas id="myChart" ></canvas> </div> <script> var ctx = document.getElementById('myChart').getContext('2d'); var myChart = new Chart(ctx, { type: 'line', data: { labels: ['红', '蓝', '黄', '绿', '紫', '橙'], datasets: [ { label: '示例1', data: [12, 19, 3, 5, 0, 3], borderColor:'blue', backgroundColor:'skyBlue', borderWidth: 1, fill: false, yAxisID: 'y-axis-1', }, { label: '示例2', data: [182, 51, 133, 54, 105, 96], borderColor:'red', backgroundColor:'pink', borderWidth: 1, fill: false, yAxisID: 'y-axis-2', }, ] }, options:{ scales:{ yAxes: [{ type: 'linear', display: true, position: 'left', id: 'y-axis-1', }, { type: 'linear', display: true, position: 'right', id: 'y-axis-2', gridLines: { drawOnChartArea: false } }], }, tooltips: { mode: 'index', intersect: false, }, } }); </script>


源代码
1. 双击选中单词 2. 三击选中整行 3. CTRL+F 查找 4. F8 全屏编辑,再次点击恢复
渲染中 渲染完成
效果
通过callbacks 函数可以自定义提示文字里的显示信息
运行效果
<script src="https://how2j.cn/study/js/chartjs/2.8.0/chart.min.js"></script> <div style="width:400px;margin:0px auto"> <canvas id="myChart" ></canvas> </div> <script> var ctx = document.getElementById('myChart').getContext('2d'); var myChart = new Chart(ctx, { type: 'line', data: { labels: ['红', '蓝', '黄', '绿', '紫', '橙'], datasets: [ { label: '示例1', data: [12, 19, 3, 5, 0, 3], borderColor:'blue', backgroundColor:'skyBlue', borderWidth: 1, fill: false, yAxisID: 'y-axis-1', }, { label: '示例2', data: [182, 51, 133, 54, 105, 96], borderColor:'red', backgroundColor:'pink', borderWidth: 1, fill: false, yAxisID: 'y-axis-2', }, ] }, options:{ scales:{ yAxes: [{ type: 'linear', display: true, position: 'left', id: 'y-axis-1', }, { type: 'linear', display: true, position: 'right', id: 'y-axis-2', gridLines: { drawOnChartArea: false } }], }, tooltips: { mode: 'index', intersect: false, callbacks: { label: function(tooltipItem, myData) { var label = myData.datasets[tooltipItem.datasetIndex].label || ''; if (label) { label += '的数值是: '; } label += parseFloat(tooltipItem.value).toFixed(2); return label; } }, }, } }); </script>


源代码
1. 双击选中单词 2. 三击选中整行 3. CTRL+F 查找 4. F8 全屏编辑,再次点击恢复
渲染中 渲染完成
效果


HOW2J公众号,关注后实时获知最新的教程和优惠活动,谢谢。


提问之前请登陆
提问已经提交成功,正在审核。 请于 我的提问 处查看提问记录,谢谢
关于 前端部分-chartjs-提示信息 的提问

尽量提供截图代码异常信息,有助于分析和解决问题。 也可进本站QQ群交流: 578362961
提问尽量提供完整的代码,环境描述,越是有利于问题的重现,您的问题越能更快得到解答。
对教程中代码有疑问,请提供是哪个步骤,哪一行有疑问,这样便于快速定位问题,提高问题得到解答的速度
在已经存在的几千个提问里,有相当大的比例,是因为使用了和站长不同版本的开发环境导致的,比如 jdk, eclpise, idea, mysql,tomcat 等等软件的版本不一致。
请使用和站长一样的版本,可以节约自己大量的学习时间。 站长把教学中用的软件版本整理了,都统一放在了这里, 方便大家下载: https://how2j.cn/k/helloworld/helloworld-version/1718.html

上传截图