In short, my question is based on the following question:
Chart.js creating a line graph using dates
There are many examples in there that work, however, the time intervals in the x-axis will always have the same space between them [no matter the format used or the options specified].
Example: assume I have the following times in the x-axis (ignore the format):
12:04pm, 12:08pm, 12:12pm, 12:30pm
In this case, the graph will show the same gap length between [12:04pm -> 12:08pm] and [12:12pm -> 12:30pm] which is not ideal. I would like the gap lengths to reflect the real-life intervals (= the second spacing should be bigger than the first one).
Is this something possible to do with Chart.js? The original poster in the linked question concluded that this isn't a feature available in Chart.js, and I just want some sort of confirmation on this before I look into another graph library.