Visualizations ignore Timezones
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
4 weeks ago
Databricks inline visualizations (bar charts / line charts) etc. ignore Timezones and always display the UTC Time on the X-Axis. 😞
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
3 weeks ago
Hello @nielsehlers!
As a workaround, you can use the from_utc_timestamp() function to convert UTC timestamps to your desired time zone before visualising:
SELECT from_utc_timestamp(column_name, 'Asia/Kolkata’) AS alias_name
FROM table_name;

