/* globals Chart:false */
(() => {
'use strict'
// Graphs
const ctx = document.getElementById('myChart')
new Chart(ctx, {
type: 'line',
data: {
labels: [
'?????',
'???????',
'????????',
'????????',
'??????',
'??????',
'?????'
],
datasets: [{
data: [
15339,
21345,
18483,
24003,
23489,
24092,
12034
],
lineTension: 0,
backgroundColor: 'transparent',
borderColor: '#007bff',
borderWidth: 4,
pointBackgroundColor: '#007bff'
}]
},
options: {
plugins: {
legend: {
display: false
},
tooltip: {
boxPadding: 3
}
}
}
})
})()
|