Hi,
I recently noticed that you changed the format in which the axis metrics are displayed.
I have many different dashboards, and I used to write my own SQL requests because it is much faster for me.
My typical requests for selecting the time series are the following ones:
SELECT
to_char(DATE_TRUNC('day', created_at
at time zone 'Europe/Paris'), 'DD Mon YYYY') AS key,
SUM(.......) AS value
FROM xxxxxxxxxxxxx
WHERE
yyyyyyy
GROUP BY
DATE_TRUNC('day', created_at
at time zone 'Europe/Paris')
ORDER BY
DATE_TRUNC('day', created_at
at time zone 'Europe/Paris')
;
As you can see, the type of the key is a String, and this way of doing was letting me display the time series exactly as I want.
Now, it is no more the case: it seems that you try to consider this serie as a time value, and you are applying a date format on the serie.
The new display looks like this:
It does not display as I would like it to be displayed.
It is displayed in an environment dependent locale: ‘MM/DD/YYYY’
instead of the one that I coded: ‘DD Mon YYYY’
This is a regression, as it was working well before.
Could you please help me to make it work as expected?
Thanks in advance
My local setup:
"database_type": "postgres",
"liana": "forest-express-sequelize",
"liana_version": "6.6.3",
"engine": "nodejs",
"engine_version": "12.13.1",
"orm_version": "5.22.3"