1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-07 22:26:57 +02:00
Files
bootstrap/docs/5.3/examples/dashboard/dashboard.js
2025-06-17 18:32:13 +02:00

49 lines
823 B
JavaScript

/* globals Chart:false */
(() => {
'use strict'
// Graphs
const ctx = document.getElementById('myChart')
new Chart(ctx, {
type: 'line',
data: {
labels: [
'Sunday',
'Monday',
'Tuesday',
'Wednesday',
'Thursday',
'Friday',
'Saturday'
],
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
}
}
}
})
})()