-
Notifications
You must be signed in to change notification settings - Fork 0
/
ptk.js
43 lines (41 loc) · 1.14 KB
/
ptk.js
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
// Dados para o gráfico
const data = {
labels: ['Janeiro', 'Fevereiro', 'Março', 'Abril', 'Maio'],
datasets: [{
label: 'dados de vendas patek',
data: [9, 4, 8, 10, 12],
backgroundColor: [
' rgba(78, 78, 78, 0.863)',
' rgba(78, 78, 78, 0.863)',
' rgba(78, 78, 78, 0.863)',
' rgba(78, 78, 78, 0.863)',
' rgba(78, 78, 78, 0.863)',
],
borderColor: [
' rgba(78, 78, 78, 0.863)',
' rgba(78, 78, 78, 0.863)',
' rgba(78, 78, 78, 0.863)',
' rgba(78, 78, 78, 0.863)',
' rgba(78, 78, 78, 0.863)',
],
borderWidth: 1
}]
};
// Opções para o gráfico
const options = {
scales: {
y: {
beginAtZero: true
}
}
};
// Criando o gráfico
const ctx = document.getElementById('myChart').getContext('2d');
const myChart = new Chart(ctx, {
type: 'bar',
data: data,
options: options
});
function qs(selector, all = false) {
return all ? document.querySelectorAll(selector) : document.querySelector(selector)
}