/
githubmirror
/
Chart.js
Обзор
Документация
Войти
/
githubmirror
/
Chart.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
test/fixtures/plugin.tooltip/caret-position.js
70 строк
2 KB
Jukka Kurkela
Fix tooltip caret position when it is positioned at the corners (#9922)
30 ноя 2021, 01:02
Не верифицирован
30 ноя 2021, 01:02
f10fab6
Код
Авторство
О чём код?
const data = []; for (let x = 1; x < 4; x++) { for (let y = 1; y < 4; y++) { data.push({x, y}); } } module.exports = { config: { type: 'scatter', data: { datasets: [{ data, backgroundColor: 'red', radius: 8, hoverRadius: 0 }], }, options: { scales: { x: {display: false, min: 0.96, max: 3.04}, y: {display: false, min: 1, max: 3} }, plugins: { legend: false, title: false, filler: false, tooltip: { mode: 'point', intersect: true, // spriteText: use white background to hide any gaps between fonts backgroundColor: 'white', borderColor: 'black', borderWidth: 1, callbacks: { label: () => 'label', } }, }, }, plugins: [{ afterDraw: function(chart) { const canvas = chart.canvas; const rect = canvas.getBoundingClientRect(); const meta = chart.getDatasetMeta(0); let point, event; for (let i = 0; i < data.length; i++) { point = meta.data[i]; event = { type: 'mousemove', target: canvas, clientX: rect.left + point.x, clientY: rect.top + point.y }; chart._handleEvent(event); chart.tooltip.handleEvent(event); chart.tooltip.draw(chart.ctx); } } }] }, options: { spriteText: true, canvas: { height: 240, width: 320 } } };