PHP Classes

File: htdocs/themes/xbootstrap5/examples/dashboard-rtl/dashboard.js

Recommend this page to a friend!
  Packages of Michael Beck   Xoops 2.5   htdocs/themes/xbootstrap5/examples/dashboard-rtl/dashboard.js   Download  
File: htdocs/themes/xbootstrap5/examples/dashboard-rtl/dashboard.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Xoops 2.5
Modular content management publication system
Author: By
Last change:
Date: 2 months ago
Size: 863 bytes
 

Contents

Class file image Download
/* 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 } } } }) })()