Javascript – Format Dates in Chartjs x Axis
The dates in the x axis are showing times and time zones. I just want to show month and day. function dateSeries(startDate, endDate) { let dates = []; let currentDate = new Date(startDate); while (currentDate <= endDate) { dates.push(new Date(currentDate));…