[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
05122024
/
htdocs
/
tracer
/
application
/
views
/
admin_grafik
/
[
Home
]
File: bg_grafik_mahasiswa_all_prodi.php
<style type="text/css"> .morris-hover { position: absolute; z-index: 1000; } .morris-hover.morris-default-style { padding: 6px; color: #666; background: rgba(243, 242, 243, 0.8); border: solid 2px rgba(195, 194, 196, 0.8); font-family: sans-serif; font-size: 18px; text-align: center; } .morris-hover.morris-default-style .morris-hover-row-label { font-weight: bold; margin: 0.25em 0; } .morris-hover.morris-default-style .morris-hover-point { white-space: nowrap; margin: 0.1em 0; } </style> <div class="container"> <div class="row"> <div class="col-sm-12"> <h3>Grafik Jumlah Mahasiswa </h3> <div id="graph"></div> <script type="text/javascript"> /* data stolen from http://howmanyleft.co.uk/vehicle/jaguar_'e'_type */ var day_data = <?php echo $fasa;?>; Morris.Bar({ element: 'graph', data: day_data, xkey: 'period', ykeys: ['DIIIKEB','DIIKEP','DIVKEB','S1KEP','NERS'], labels: ['DIII Kebidanan','DIII Keperawatan','DIV Kebidanan','S1 Keperawatan','NERS'], xLabelAngle: 60 }); </script> </div></div> <div class="row"> <div class="col-sm-12"> <center><h3>JUMLAH MAHASISWA</h3></center> <table class="table"> <thead> <tr> <th>TAHUN</th> <th style="color: #0b62a4;">DIII Kebidanan</th> <th style="color: #7a92a3;">DIII Keperawatan</th> <th style="color: #4da74d;">DIV Kebidanan</th> <th style="color: #afd8f8;">S1 Keperawatan</th> <th style="color: #edc240;">NERS</th> </tr> </thead> <tbody> <?php foreach ($grafik->result() as $key) {?> <tr> <td><?php echo $key->angkatan;?></td> <td style="background-color: #0b62a4; color: #fff;"><?php echo $key->DIIIKEB;?> Mahasiswa</td> <td style="background-color: #7a92a3; color: #fff;"><?php echo $key->DIIKEP;?> Mahasiswa</td> <td style="background-color: #4da74d; color: #fff;"><?php echo $key->DIVKEB;?> Mahasiswa</td> <td style="background-color: #afd8f8; color: #000;"><?php echo $key->S1KEP;?> Mahasiswa</td> <td style="background-color: #edc240; color: #000;"><?php echo $key->NERS;?> Mahasiswa</td> </tr> <?php } ?> </tbody> </table> <center><h3>JUMLAH STATUS MAHASISWA</h3></center> </div> </div> <div class="row"> <div class="col-sm-12"> <table class="table"> <thead> <tr> <th>ANGKATAN</th> <th>PRODI</th> <th>AKTIF</th> <th>CUTI</th> <th>NON AKTIF</th> <th>KELUAR</th> <th>LULUS</th> <th>MENINGGAL</th> <th>TOTAL</th> </tr> </thead> <tbody> <?php foreach ($grafikStatus->result() as $key) {?> <tr> <td><?php echo $key->angkatan;?></td> <td ><?php echo $key->jurusan;?></td> <td ><?php echo $key->aktif;?> Mahasiswa</td> <td ><?php echo $key->cuti;?> Mahasiswa</td> <td ><?php echo $key->nonAktif;?> Mahasiswa</td> <td ><?php echo $key->keluar;?> Mahasiswa</td> <td ><?php echo $key->lulus;?> Mahasiswa</td> <td ><?php echo $key->meninggal;?> Mahasiswa</td> <td ><?php echo $key->total;?> Mahasiswa</td> </tr> <?php } ?> </tbody> </table> </div> </div> </div>