In chart.js, is it possible to display the full date (e.g 24.04.2020) when the time scale is set to hours. This should only happen at midnight.
So for example you have the hours in the image and at "00" (midnight) there should be a label with "24.04.2020 00:00".
These are my current settings regarding time:
time: {
minUnit: "minute",
tooltipFormat: "d.MM.yyyy HH:mm",
displayFormats: {
minute: "HH:mm",
hour: "HH",
day: "d.MM ",
month: "MM yyyy",
year: "yyyy"
}
}