Inconsistent timezone in line charts
See original GitHub issueI enabled privacy.resistFingerprinting
in Firefox, so the browser timezone is always UTC. The table view displays timestamps in the browser timezone instead of the timezone selected from the dropdown in the upper right corner. X-axis of line charts are also displayed in the browser timezone.
Issue Analytics
- State:
- Created 5 years ago
- Comments:9 (6 by maintainers)
Top Results From Across the Web
Solve the inconsistent time zone problem in the container
During the use of containers, time zone inconsistency in containers will cause trouble when the system time is used for operations, ...
Read more >Time data with irregular intervals | Highcharts.com
Line chart with 3 lines. ... This demo visualizes a data set with irregular time intervals. Highcharts comes with sophisticated functionality for dealing...
Read more >Highcharts - Line chart is using wrong TimeZone
I have a situation where I need to display the exact time received from server in the Highchart. The datetime should not change...
Read more >The dates and times in my questions and charts are wrong
Your question or chart is comparing or sorting values with inconsistent or missing time zones. For example, if a flight's departure and arrival...
Read more >Study/Price Overlay Time Zones Not In Sync - Support ... - Sierra Chart
This causes inconsistent results depending on the global time zone setting. ... the wrong place in time, and there is a hockey stick...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Here the
.toDate()
function erased the timezone information and converted the moment into browser (system) timezone, because theDate
object is always in the time zone of the browser. So when D3 formats thisDate
it could only use the browser timezone.https://github.com/allegro/turnilo/blob/bd73d4c4b172603169728658d23a8607e564684d/src/client/components/line-chart-axis/line-chart-axis.tsx#L69
https://github.com/allegro/turnilo/blob/bd73d4c4b172603169728658d23a8607e564684d/src/client/components/line-chart-axis/line-chart-axis.tsx#L56-L59
Closed via #317