Using Chart.js , you can create line charts, and for this you must use labels and datasets. eg:
var data = { labels: ["January", "February", "March", "April", "May", "June", "July"], datasets: [ { label: "My First dataset", fill: false, lineTension: 0.1, backgroundColor: "rgba(75,192,192,0.4)", borderColor: "rgba(75,192,192,1)", borderCapStyle: 'butt', borderDash: [], borderDashOffset: 0.0, borderJoinStyle: 'miter', pointBorderColor: "rgba(75,192,192,1)", pointBackgroundColor: "#fff", pointBorderWidth: 1, pointHoverRadius: 5, pointHoverBackgroundColor: "rgba(75,192,192,1)", pointHoverBorderColor: "rgba(220,220,220,1)", pointHoverBorderWidth: 2, pointRadius: 1, pointHitRadius: 10, data: [65, 59, 80, 81, 56, 55, 40], } ] };
The problem is that you have the number of label corrections (in this case 7), and you also need to provide 7 data records for each data set. Now, if you have an unknown number of labels and data records?
What to do if one data item contains a number and time:
Entry { number: 127 time: 10:00 }
What if you want to show all the time on the x-axis and all numbers on the y-axis, sorted by time on the x-axis. Is this possible with Chart.js?