I want to display the date for a graph panel in the title of the panel.
I was thinking to use the $__from variable. I just cannot find a way to convert this timestamp to the corresponding date considering the browser’s timezone.
Is there such a function that would take timestamp and return date ?
One possible way to work around this is to define a hidden variable that points to a data source that is able to perform this manipulation. For example, a SQL database with the following:
select cast(cast($__timeFrom() as date) as varchar)