aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/twbs/bootstrap/site/content/docs/5.1/examples/dashboard-rtl/dashboard.js
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2021-10-08 12:24:19 +0000
committerMario <mario@mariovavti.com>2021-10-08 12:24:19 +0000
commite6dac085cb1d601da1fc63bfd59d811612fa6ef4 (patch)
treef5b704b613c9c8d347857b4e7f8dd0b19cdd7df3 /vendor/twbs/bootstrap/site/content/docs/5.1/examples/dashboard-rtl/dashboard.js
parentf5f357060bf0ebcb0b8352519375953d993437e7 (diff)
downloadvolse-hubzilla-e6dac085cb1d601da1fc63bfd59d811612fa6ef4.tar.gz
volse-hubzilla-e6dac085cb1d601da1fc63bfd59d811612fa6ef4.tar.bz2
volse-hubzilla-e6dac085cb1d601da1fc63bfd59d811612fa6ef4.zip
update composer libs
Diffstat (limited to 'vendor/twbs/bootstrap/site/content/docs/5.1/examples/dashboard-rtl/dashboard.js')
-rw-r--r--vendor/twbs/bootstrap/site/content/docs/5.1/examples/dashboard-rtl/dashboard.js53
1 files changed, 53 insertions, 0 deletions
diff --git a/vendor/twbs/bootstrap/site/content/docs/5.1/examples/dashboard-rtl/dashboard.js b/vendor/twbs/bootstrap/site/content/docs/5.1/examples/dashboard-rtl/dashboard.js
new file mode 100644
index 000000000..7831fa9d0
--- /dev/null
+++ b/vendor/twbs/bootstrap/site/content/docs/5.1/examples/dashboard-rtl/dashboard.js
@@ -0,0 +1,53 @@
+/* globals Chart:false, feather:false */
+
+(function () {
+ 'use strict'
+
+ feather.replace({ 'aria-hidden': 'true' })
+
+ // Graphs
+ var ctx = document.getElementById('myChart')
+ // eslint-disable-next-line no-unused-vars
+ var 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: {
+ scales: {
+ yAxes: [{
+ ticks: {
+ beginAtZero: false
+ }
+ }]
+ },
+ legend: {
+ display: false
+ }
+ }
+ })
+})()