预期输出:
我是Chartjs的新手。 如何在Chartjs中显示在X轴上具有子组的条形图。
谢谢。
我正在使用的基本示例如下。
new Chart(document.getElementById("bar-chart-grouped"), {
type: 'bar',
data: {
labels: ["Sales", "Marketing", "Engineering"],
datasets: [
{
label: "US",
backgroundColor: "#abd0ed",
data: [133,221,783]
}
]
},
options: {
title: {
display: true,
text: 'Employee Distribution BY Region and Year'
}
}
});