Hi I created a chart in apex 5.1 with the folowing select from a view
SELECT
cacdeht\_mm,
cacdeht\_month,
cacdeht\_yyyy,
cacdeht\_tot\_keur
FROM
v\_cacdcl\_chart\_mensuel\_n0\_n1
WHERE cacdeht_yyyy = to_char(add_months(sysdate,-12),'yyyy')
order by cacdeht_mm
cacdeht_month is the result of a to_char(cdcl_dt_saisie,'month')
cacdeht_mm is the result of a to_char(cdcl_dt_saisie,'mm')
I made an order by cacdeht_mm and choose cacdeht_month for the Label

But the result when displaying the graph is that the month is ordered in alphabetic as shown below
How can I order it by the month janvier-février an so one .

Thanks in advance
Jean-Yves