我的json数组看起来像这样
[{"count":2,"DepartementNom":"Finance"},{"count":1,"DepartementNom":"Technique"}]
如何使用该数据集填充chart.js饼图?我已经尝试过这个代码,但似乎某个地方出现了问题。
var d = {!! json_encode($json_deco) !!};
new Chart(document.getElementById("pie-chart"), {
type: 'pie',
data: d,
options: {
title: {
display: true,
text: "Nombre demployés par departement"
}
}
});