// Параметры графика var opcionesLoteria = { scales: { y: { beginAtZero: true } } };
// Получить контекст холста var ctx = document.getElementById('lotteryChart').getContext('2d');
// Создать столбчатую диаграмму var myChart = new Chart(ctx, { type: 'bar', data: datosLoteria, options: opcionesLoteria });