// Opties van de grafiek var opcionesLoteria = { scales: { y: { beginAtZero: true } } };
// Het canvas-context ophalen var ctx = document.getElementById('lotteryChart').getContext('2d');
// Het staafdiagram maken var myChart = new Chart(ctx, { type: 'bar', data: datosLoteria, options: opcionesLoteria });