Modify the information box of the scatter chart in Chart.JS
问题 I'm working with a scatter chart in chart.js and I need to modify the info what I show when I'm above a point. I think the box that contains this information is called tooltip . Below I show what I have now, What I want to do is modify the first one, and put 14:52 like the x-axis. In the x-axis was easy, options: { scales: { xAxes: [{ type: 'linear', position: 'bottom', ticks: { callback: function(value, index, values) { var time = String(value); if (time.length == 3){ time = '0' + time; }