I have a simple time series csv that renders as though the timestamps are out of order, but I cannot find the error in the actual file. Any pointers on what has gone wrong would be greatly appreciated.
Thanks for the pointer. My data appears compliant. Everything worked fine for the first week, then occasionally glitches. Do you have a specific recommendation?
Well, I think you must be passing only time
column as x
coordinates to Plotly.newPlot
. You’ll need to concatenate the date
and time
records to make plotly.js understands your data as dates.
1 Like
That did the trick, thank you very much!