Skip to content

Instantly share code, notes, and snippets.

@dance2die
Created December 4, 2017 02:07
Embed
What would you like to do?
// 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