$.ajax({ url: 'data/flop_articles.json', dataType: 'json' }).done(function (results) { new Chart(document.getElementById("flop_articles_chart"), { type: 'horizontalBar', data: { labels: results.labels, datasets: [{ label: 'Holz', backgroundColor: 'rgba(244, 177, 131, 1)', stack: 'Stack 0', data: results.data1 }, { label: 'Eisenwaren', backgroundColor: 'rgba(255, 217, 102, 1)', stack: 'Stack 1', data: results.data2 }, { label: 'Baumaterialien', backgroundColor: 'rgba(196, 209, 142, 1)', stack: 'Stack 2', data: results.data3 }] }, options: { responsive: true, title: { display: false, text: 'Flop Artikel' }, legend: { position: 'bottom', }, scales: { yAxes: [{ gridLines: { display: false }, ticks: { beginAtZero: true } }] } } }); });