[Chartjs]-Chart.js two y axes line chart tooltip value incorrect for 2nd y axis

1👍

You have to specify the X axis of each of the Wait data.
Paste it like this in your code:

data: [
    { x: "08:00", y: "00:28" },
    { x: "09:00", y: "00:45" },
    { x: "10:00", y: "00:15" },
    { x: "11:00", y: "00:12" },
    { x: "12:00", y: "00:22" },
    { x: "13:00", y: "00:55" },
    { x: "14:00", y: "00:10" }
]

Leave a comment