答案 0 :(得分:0)
您可以在堆叠的水平条形图的每个dataset
中定义barPercentage
and/or categoryPercentage
的值数组。数组应为每个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>