你可以为 barPercentage
或 categoryPercentage
里面每 dataset
的堆叠水平条形图。数组应该包含每一个 data
值,除了最后一个,其他都是一样的。
categoryPercentage: [0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1]
请看下面的代码示例。
new Chart(document.getElementById('myChart'), {
type: 'horizontalBar',
data: {
labels: ['A', 'B', 'C', 'D', 'E', 'F', 'Others'],
datasets: [{
label: 'Money in',
data: [1, 1, 1, 1, 1, 1, 2],
backgroundColor: 'rgb(26,121,191)',
categoryPercentage: [0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1]
},
{
label: 'Money in',
data: [1, 1, 1, 1, 1, 1, 0],
backgroundColor: 'rgb(0,51,160)',
categoryPercentage: [0.7, 0.7, 0.7, 0.7, 0.7, 0.7, 1]
}]
},
options: {
scales: {
yAxes: [{
stacked: true
}],
xAxes: [{
stacked: true,
ticks: {
beginAtZero: true,
stepSize: 1
}
}]
},
legend: {
display: false
}
}
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.9.3/Chart.bundle.js"></script>
<canvas id="myChart" height="100"></canvas>