%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.41 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/ppaobm/backend/web/adminlte/bower_components/morris.js/spec/viz/ |
Upload File : |
var examples = require('./examples'); examples.def('line', function () { Morris.Line({ element: 'chart', data: [ { x: 0, y: 10, z: 30 }, { x: 1, y: 20, z: 20 }, { x: 2, y: 30, z: 10 }, { x: 3, y: 30, z: 10 }, { x: 4, y: 20, z: 20 }, { x: 5, y: 10, z: 30 } ], xkey: 'x', ykeys: ['y', 'z'], labels: ['y', 'z'], parseTime: false }); window.snapshot(); }); examples.def('area', function () { Morris.Area({ element: 'chart', data: [ { x: 0, y: 1, z: 1 }, { x: 1, y: 2, z: 1 }, { x: 2, y: 3, z: 1 }, { x: 3, y: 3, z: 1 }, { x: 4, y: 2, z: 1 }, { x: 5, y: 1, z: 1 } ], xkey: 'x', ykeys: ['y', 'z'], labels: ['y', 'z'], parseTime: false }); window.snapshot(); }); examples.def('bar', function () { Morris.Bar({ element: 'chart', data: [ { x: 0, y: 1, z: 3 }, { x: 1, y: 2, z: 2 }, { x: 2, y: 3, z: 1 }, { x: 3, y: 3, z: 1 }, { x: 4, y: 2, z: 2 }, { x: 5, y: 1, z: 3 } ], xkey: 'x', ykeys: ['y', 'z'], labels: ['y', 'z'] }); window.snapshot(); }); examples.def('stacked_bar', function () { Morris.Bar({ element: 'chart', data: [ { x: 0, y: 1, z: 1 }, { x: 1, y: 2, z: 1 }, { x: 2, y: 3, z: 1 }, { x: 3, y: 3, z: 1 }, { x: 4, y: 2, z: 1 }, { x: 5, y: 1, z: 1 } ], xkey: 'x', ykeys: ['y', 'z'], labels: ['y', 'z'], stacked: true }); window.snapshot(); }); examples.run();