You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that plotly.js does not recognize an ISO 8601 timestamp with a character other than a space separating the date and time, e.g.: 2016-10-14 18:04:52.142018000 works, but 2016-10-14T18:04:52.142018000 is not parsed as a timestamp.
Obviously the "T" can be replaced with a space, but it would be nice to support the output of many standard JSON serializes.
The text was updated successfully, but these errors were encountered:
One decision I'd like some feedback on: at least for now (unless and until we build in proper timezone support), I'm leaning toward simply throwing away timezone information. That means, however, that if you have a single dataset containing dates recorded at different timezones, they will become shifted relative to each other. I think this will generally be more useful than for example shifting everything to UTC, and making some sort of smart decision about harmonizing timezones across a whole dataset is outside the scope I can tackle right now. Is this going to be a major constraint for anyone?
A few extensions to it, like (+/-)HHMM, and accepting the same time variants that we take for regular Plotly format dates, including fractional seconds
It seems that plotly.js does not recognize an ISO 8601 timestamp with a character other than a space separating the date and time, e.g.:
2016-10-14 18:04:52.142018000
works, but2016-10-14T18:04:52.142018000
is not parsed as a timestamp.Obviously the "T" can be replaced with a space, but it would be nice to support the output of many standard JSON serializes.
The text was updated successfully, but these errors were encountered: