Hi,
Under Oracle APEX 24.2.13, I am displaying a graph. But the date format displayed is not what I want. I want only the year and the month to be displayed like this “April 2025, May 2025, etc…)”.

Query is :
select count(DERNIERE_CONNEXION) as nombre_connexions,
TRUNC(DERNIERE_CONNEXION, 'Month') as mois
from TB_USERS
group by TRUNC(DERNIERE_CONNEXION, 'Month')
order by TRUNC(DERNIERE_CONNEXION, 'Month')
Model is ‘MMM’.
Best regards.