I am trying to render an array of time data on the x axis scale of a line chart in chart.js but despite trying numerous options settings cannot get it to display at all. The data is in string format ["00:30", "01:00", "01:30"...] and these are my xAxes options settings:
xAxes: [{
type: "time",
time: {
parser: "hh:mm",
unit: "minute",
displayFormats: {
minute: "hh:mm"
}
},
Am I missing something obvious?
Thanks!