Timezones

Plotalot does not do any timezone conversions. It's usually best to store times as UTC and convert to the required timezone when you retrieve the data. For example:

CONVERT_TZ(`my_date_field`, 'UTC', 'Europe/Paris')

or:

CONVERT_TZ(`my_date_field`, '+00:00', '+01:00')