This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://frappe.github.io/charts/ | |
const data = { | |
labels: [ | |
"12am-3am", | |
"3am-6am", | |
"6am-9am", | |
"9am-12pm", | |
"12pm-3pm", | |
"3pm-6pm", | |
"6pm-9pm", | |
"9pm-12am" | |
], | |
datasets: [ | |
{ | |
title: "Some Data", | |
values: [25, 40, 30, 35, 8, 52, 17, -4] | |
}, | |
{ | |
title: "Another Set", | |
values: [25, 50, -10, 15, 18, 32, 27, 14] | |
}, | |
{ | |
title: "Yet Another", | |
values: [15, 20, -3, -15, 58, 12, -17, 37] | |
} | |
] | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment