this is my postgreSQL query :
SELECT
count(*) as number,
to_char(event.creation_date, 'MM-YYYY') as my_date
FROM event
JOIN event_resources ON event.id=event_resources.event_id
WHERE {{date}}
GROUP BY my_date
ORDER BY min(event.creation_date) asc;
and this is my result :
i would like each mm-yyyy to appear event when number=0. i can't change the x-axis scale (it is on ordinal). for instance, 01-2020 doesn't appear on this graph
can someone help ?
have a nice day