Grouping by month year orders my dates incorrectly

I have a table that uses an Oracle timestamp to store incidents, and want to generate a line graph that charts a separate line for each incident type.

In order to simplify my Xaxis labels, I've pulled the abbreviated month and year out into another column called month_year.

My problem is that grouping by month year orders my dates incorrectly (e.g. Feb 2016 sorts higher that Jan 2016, so I wind up with Dec 2015, Feb 2016, Jan 2016, Mar 2016 as my grouping - not what I want)

A view of the data with a simplified date field might be:
{
{ id:1, incident_type: "Critical",month_year: "Jan 2016", date_reported: "12/01/2016 09:30"},
{ id:2, incident_type: "Critical",month_year: "Feb 2016", date_reported: "24/02/2016 09:30"},
{ id:3, incident_type: "Minor",month_year: "Jan 2016", date_reported: "07/01/2016 09:30"},
{ id:4, incident_type: "Critical",month_year: "Mar 2016", date_reported: "17/03/2016 09:30"},
{ id:5, incident_type: "Major",month_year: "Feb 2...

OriginalPostID-202703

OriginalPostID-202703

  Discussion posts and replies are publicly visible