Javascript – Show all data when a tooltip is triggered in Chart.js
I want to show all data when hovering on specific data in Chart Js. let ctx = document.getElementById('myChart').getContext('2d') let myChart = new Chart(ctx, { type: 'bar', data: { labels: ['January', 'February', 'March', 'April'], datasets: [{ label: 'Data', data: [12, 19,…