����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 74.208.127.88 / Your IP : 216.73.216.68 Web Server : Apache/2.4.41 (Ubuntu) System : Linux ubuntu 5.4.0-163-generic #180-Ubuntu SMP Tue Sep 5 13:21:23 UTC 2023 x86_64 User : www-data ( 33) PHP Version : 7.4.3-4ubuntu2.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/self/root/proc/thread-self/root/var/www/html/rockyo/assets/js/ |
Upload File : |
var Script = function () { //morris chart $(function () { // data stolen from http://howmanyleft.co.uk/vehicle/jaguar_'e'_type var tax_data = [ {"period": "2011 Q3", "licensed": 3407, "sorned": 660}, {"period": "2011 Q2", "licensed": 3351, "sorned": 629}, {"period": "2011 Q1", "licensed": 3269, "sorned": 618}, {"period": "2010 Q4", "licensed": 3246, "sorned": 661}, {"period": "2009 Q4", "licensed": 3171, "sorned": 676}, {"period": "2008 Q4", "licensed": 3155, "sorned": 681}, {"period": "2007 Q4", "licensed": 3226, "sorned": 620}, {"period": "2006 Q4", "licensed": 3245, "sorned": null}, {"period": "2005 Q4", "licensed": 3289, "sorned": null} ]; Morris.Line({ element: 'hero-graph', data: tax_data, xkey: 'period', ykeys: ['licensed', 'sorned'], labels: ['Licensed', 'Off the road'], lineColors:['#4ECDC4','#ed5565'] }); Morris.Donut({ element: 'hero-donut', data: [ {label: 'Jam', value: 25 }, {label: 'Frosted', value: 40 }, {label: 'Custard', value: 25 }, {label: 'Sugar', value: 10 } ], colors: ['#3498db', '#2980b9', '#34495e'], formatter: function (y) { return y + "%" } }); Morris.Area({ element: 'hero-area', data: [ {period: '2010 Q1', iphone: 2666, ipad: null, itouch: 2647}, {period: '2010 Q2', iphone: 2778, ipad: 2294, itouch: 2441}, {period: '2010 Q3', iphone: 4912, ipad: 1969, itouch: 2501}, {period: '2010 Q4', iphone: 3767, ipad: 3597, itouch: 5689}, {period: '2011 Q1', iphone: 6810, ipad: 1914, itouch: 2293}, {period: '2011 Q2', iphone: 5670, ipad: 4293, itouch: 1881}, {period: '2011 Q3', iphone: 4820, ipad: 3795, itouch: 1588}, {period: '2011 Q4', iphone: 15073, ipad: 5967, itouch: 5175}, {period: '2012 Q1', iphone: 10687, ipad: 4460, itouch: 2028}, {period: '2012 Q2', iphone: 8432, ipad: 5713, itouch: 1791} ], xkey: 'period', ykeys: ['iphone', 'ipad', 'itouch'], labels: ['iPhone', 'iPad', 'iPod Touch'], hideHover: 'auto', lineWidth: 1, pointSize: 5, lineColors: ['#4a8bc2', '#ff6c60', '#a9d86e'], fillOpacity: 0.5, smooth: true }); Morris.Bar({ element: 'hero-bar', data: [ {device: 'iPhone', geekbench: 136}, {device: 'iPhone 3G', geekbench: 137}, {device: 'iPhone 3GS', geekbench: 275}, {device: 'iPhone 4', geekbench: 380}, {device: 'iPhone 4S', geekbench: 655}, {device: 'iPhone 5', geekbench: 1571} ], xkey: 'device', ykeys: ['geekbench'], labels: ['Geekbench'], barRatio: 0.4, xLabelAngle: 35, hideHover: 'auto', barColors: ['#ac92ec'] }); new Morris.Line({ element: 'examplefirst', xkey: 'year', ykeys: ['value'], labels: ['Value'], data: [ {year: '2008', value: 20}, {year: '2009', value: 10}, {year: '2010', value: 5}, {year: '2011', value: 5}, {year: '2012', value: 20} ] }); $('.code-example').each(function (index, el) { eval($(el).text()); }); }); }();