Data Laporan Keuangan BPSDM
- Laporan Keuangan Tahun 2023
- Laporan Keuangan Tahun 2023
var ctx = document.getElementById(‘genderChart’).getContext(‘2d’);
var genderChart = new Chart(ctx, {
type: ‘pie’, // Jenis grafik: Pie chart
data: {
labels: [‘Perempuan’, ‘Laki-Laki’], // Label data
datasets: [{
data: [43, 57], // Persentase data
backgroundColor: [‘#FF6384’, ‘#36A2EB’], // Warna setiap segmen
hoverBackgroundColor: [‘#FF7394’, ‘#46B2FB’] // Warna hover
}]
},
options: {
responsive: true,
plugins: {
legend: {
position: ‘top’, // Posisi legenda
},
tooltip: {
callbacks: {
label: function(tooltipItem) {
return tooltipItem.label + ‘: ‘ + tooltipItem.raw + ‘%’;
}
}
}
}
}
});
Memuat…