Visualizations ignore Timezones

nielsehlers
New Contributor

Databricks inline visualizations (bar charts / line charts) etc. ignore Timezones and always display the UTC Time on the X-Axis. 😞

Advika
Community Manager
Community Manager

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;