at path:
ROOT
/
sistema
/
assets
/
js
/
widgets.js
run:
R
W
Run
init-scripts
DIR
2026-04-09 04:12:40
R
W
Run
ajax.js
390 By
2020-03-21 21:04:06
R
W
Run
Delete
Rename
apuntes.js
3.16 KB
2020-09-04 15:07:24
R
W
Run
Delete
Rename
dashboard.js
3.28 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
index.html
0 By
2018-11-08 02:46:18
R
W
Run
Delete
Rename
main.js
894 By
2018-11-08 02:46:18
R
W
Run
Delete
Rename
modacceso.js
34.52 KB
2020-07-31 00:11:56
R
W
Run
Delete
Rename
modalertas.js
2.55 KB
2020-11-02 20:27:14
R
W
Run
Delete
Rename
modceproceso.js
57.56 KB
2020-11-09 23:40:36
R
W
Run
Delete
Rename
modcms.js
333.75 KB
2020-11-16 21:17:02
R
W
Run
Delete
Rename
modpersonal.js
32.37 KB
2020-05-23 19:43:12
R
W
Run
Delete
Rename
modproyectos.js
70.66 KB
2020-06-13 00:57:06
R
W
Run
Delete
Rename
web.js
5.77 KB
2020-09-21 22:29:16
R
W
Run
Delete
Rename
widgets.js
6.09 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
error_log
up
📄
widgets.js
Save
( function ( $ ) { "use strict"; // Counter Number $('.count').each(function () { $(this).prop('Counter',0).animate({ Counter: $(this).text() }, { duration: 3000, easing: 'swing', step: function (now) { $(this).text(Math.ceil(now)); } }); }); //WidgetChart 1 var ctx = document.getElementById( "widgetChart1" ); ctx.height = 150; var myChart = new Chart( ctx, { type: 'line', data: { labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'], type: 'line', datasets: [ { data: [65, 59, 84, 84, 51, 55, 40], label: 'Dataset', backgroundColor: 'transparent', borderColor: 'rgba(255,255,255,.55)', }, ] }, options: { maintainAspectRatio: false, legend: { display: false }, responsive: true, scales: { xAxes: [ { gridLines: { color: 'transparent', zeroLineColor: 'transparent' }, ticks: { fontSize: 2, fontColor: 'transparent' } } ], yAxes: [ { display:false, ticks: { display: false, } } ] }, title: { display: false, }, elements: { line: { borderWidth: 1 }, point: { radius: 4, hitRadius: 10, hoverRadius: 4 } } } } ); //WidgetChart 2 var ctx = document.getElementById( "widgetChart2" ); ctx.height = 150; var myChart = new Chart( ctx, { type: 'line', data: { labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'], type: 'line', datasets: [ { data: [1, 18, 9, 17, 34, 22, 11], label: 'Dataset', backgroundColor: '#63c2de', borderColor: 'rgba(255,255,255,.55)', }, ] }, options: { maintainAspectRatio: false, legend: { display: false }, responsive: true, scales: { xAxes: [ { gridLines: { color: 'transparent', zeroLineColor: 'transparent' }, ticks: { fontSize: 2, fontColor: 'transparent' } } ], yAxes: [ { display:false, ticks: { display: false, } } ] }, title: { display: false, }, elements: { line: { tension: 0.00001, borderWidth: 1 }, point: { radius: 4, hitRadius: 10, hoverRadius: 4 } } } } ); //WidgetChart 3 var ctx = document.getElementById( "widgetChart3" ); ctx.height = 70; var myChart = new Chart( ctx, { type: 'line', data: { labels: ['January', 'February', 'March', 'April', 'May', 'June', 'July'], type: 'line', datasets: [ { data: [78, 81, 80, 45, 34, 12, 40], label: 'Dataset', backgroundColor: 'rgba(255,255,255,.2)', borderColor: 'rgba(255,255,255,.55)', }, ] }, options: { maintainAspectRatio: true, legend: { display: false }, responsive: true, scales: { xAxes: [ { gridLines: { color: 'transparent', zeroLineColor: 'transparent' }, ticks: { fontSize: 2, fontColor: 'transparent' } } ], yAxes: [ { display:false, ticks: { display: false, } } ] }, title: { display: false, }, elements: { line: { borderWidth: 2 }, point: { radius: 0, hitRadius: 10, hoverRadius: 4 } } } } ); //WidgetChart 4 var ctx = document.getElementById( "widgetChart4" ); ctx.height = 70; var myChart = new Chart( ctx, { type: 'bar', data: { labels: ['', '', '', '', '', '', '', '', '', '', '', '', '', '', '', ''], datasets: [ { label: "My First dataset", data: [78, 81, 80, 45, 34, 12, 40, 75, 34, 89, 32, 68, 54, 72, 18, 98], borderColor: "rgba(0, 123, 255, 0.9)", //borderWidth: "0", backgroundColor: "rgba(255,255,255,.3)" } ] }, options: { maintainAspectRatio: true, legend: { display: false }, scales: { xAxes: [{ display: false, categoryPercentage: 1, barPercentage: 0.5 }], yAxes: [ { display: false } ] } } } ); } )( jQuery );