Chart.js
- Helps create graphs in the browser
- Much narrower goal than JQuery
- Pretty easy to use but harder to extend
const chart = new Chart(context, {
type: "bar",
data: {
labels: ["a", "b", "c", "d", "e", "f"],
datasets: [{
label: "Some Data",
data: [0,1,2,3,4,5]
}]
}
});
11 / 24