Trying to display JSON data in a chart using Chart.js and AngularJS based on months, but facing an issue with the date format being '2017-06-12T12:00:00.000Z'. Specifically, I am unsure how to group the data by month names (June, July, August, etc.) with this date format.
JSON Data
[
{"id":1,"date":"2017-06-12T12:00:00.000Z","total":123},
{"id":2,"date":"2017-06-04T12:00:00.000Z","total":100},
{"id":3,"date":"2017-08-29T12:00:00.000Z","total":94}
]
Also, looking for guidance on integrating Chart.js in AngularJS to plot the dates sorted by month names on the x-axis and the totals on the y-axis.