-
Grafana version: 10.3.1, operating system: MacOs (using in Chrome)
-
Visualize daywise aggregated information in bargraph plots over last seven days.
-
Using a sql query
-
The x-axis label is not as expected. It is showing only hour and minute information.
-
X-axis shows day information.
-
The data in time column (in Table view) looks like 2024-02-05 01:00:00, although the column has only date and no timestamp information. I am using Postges db and i think the problem is irrelevant to the data source.
Sql query:
select log_date as “time”, click_cnt, page
FROM
some_table -
No errors on the UI.
1 Like
Hi, I had the same issue and doing an override of the date field like in the following post worked for me (time:DD.MM.YYYY):
https://community.grafana.com/t/change-dashboard-date-format/105976/4
1 Like
This worked for me. Thank you.