%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
| Server IP : 14.207.165.8 / Your IP : 216.73.216.26 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 : /proc/thread-self/root/var/www/html/ppaobm/vendor/bower-asset/chartjs/samples/ |
Upload File : |
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" href="favicon.ico">
<script src="samples.js"></script>
<script src="utils.js"></script>
<title>Chart.js samples</title>
</head>
<body>
<div class="content">
<div class="header">
<div class="chartjs-title">Samples</div>
<div class="chartjs-caption">Simple yet flexible JavaScript charting for designers & developers</div>
<div class="chartjs-links">
<a class="btn btn-chartjs" href="https://www.chartjs.org">Website</a>
<a class="btn btn-docs" href="https://www.chartjs.org/docs">Documentation</a>
<a class="btn btn-gh" href="https://github.com/chartjs/Chart.js">GitHub</a>
</div>
</div>
<div id="categories" class="samples-categories"></div>
</div>
<script>
function createCategory(item) {
var el = document.createElement('div');
el.className = 'samples-category';
el.innerHTML =
'<div class="title">' + item.title + '</div>' +
'<div class="items"></div>';
return el;
}
function createEntry(item) {
var el = document.createElement('div');
el.className = 'samples-entry';
el.innerHTML = '<a class="title" href="' + item.path + '">' + item.title + '</a>';
return el;
}
var categories = document.getElementById('categories');
Samples.items.forEach(function(item) {
var category = createCategory(item);
var children = category.getElementsByClassName('items')[0];
(item.items || []).forEach(function(item2) {
children.appendChild(createEntry(item2));
});
categories.appendChild(category);
});
</script>
</body>
</html>