import { Chart } from 'chart.js/auto';
// ... (kode untuk mendapatkan data suara dari smart contract)
const ctx = document.getElementById('myChart').getContext('2d');
const myChart = new Chart(ctx, {
type: 'pie',
data: {
labels: ['Sam'ani - Belinda', 'Hartopo - Mawahib'],
datasets: [{
label: 'Jumlah Suara',
data: [jumlahSuaraSamani, jumlahSuaraHartopo],
backgroundColor: [
'rgb(255, 99, 132)',
'rgb(54, 162, 235)'
],
hoverOffset: 4
}]
}
});