forked from guevaraia/ui
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
86 lines (83 loc) · 1.48 KB
/
Copy pathscript.js
File metadata and controls
86 lines (83 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
const ctx = document.getElementById("revenues");
Chart.defaults.color = "#FFF";
Chart.defaults.font.family = "Open Sans";
new Chart(ctx, {
type: "bar",
data: {
labels: [
"Jan",
"Feb",
"Mar",
"Apr",
"May",
"Jun",
"Jul",
"Aug",
"Sep",
"Oct",
"Nov",
"Dec",
],
datasets: [
{
label: "Revenue (million [$])",
data: [
5.2, 7.8, 12.3, 11.2, 11.5, 28.8, 35.5, 40, 42.5, 45.5, 50.5, 60,
],
backgroundColor: "#F4BD50",
borderRadius: 6,
borderSkipped: false,
},
],
},
// continuation
options: {
responsive: true,
maintainAspectRatio: false,
plugins: {
legend: {
display: false,
},
title: {
display: true,
text: "Your Company Revenue In 2023",
padding: {
bottom: 16,
},
font: {
size: 16,
weight: "normal",
},
},
tooltip: {
backgroundColor: "#27292D",
},
},
scales: {
x: {
border: {
dash: [2, 4],
},
grid: {
color: "#27292D",
},
title: {
text: "2023",
},
},
y: {
grid: {
color: "#27292D",
},
border: {
dash: [2, 4],
},
beginAtZero: true,
title: {
display: true,
text: "Revenue (million [$])",
},
},
},
},
});