我必须使用 react-chartjs-2 创建堆积条形图。
options : {
maintainAspectRatio: false,
tooltips: {
mode: 'x-axis'
},
scales: {
yAxes: [{
ticks: {
beginAtZero: true
}
}],
xAxes: [{
stacked: true
}]
}
}
Bar中的堆叠似乎不起作用。
我正在使用 chartjs@2.4.0