我使用chart.js 2.9.3
我有一个满足以下条件的甜甜圈图:
查看所附的屏幕截图:
代码如下:
<div style="width: 500px">
<canvas id="myChart" width="400" height="400"></canvas>
</div>
<script src="https://cdn.jsdelivr.net/npm/chart.js@2.9.3/dist/Chart.min.js"></script>
<script>
var ctx = document.getElementById('myChart').getContext('2d');
var borderColor = 'white'
var myChart = new Chart(ctx, {
type: 'doughnut',
data: {
labels: ['Red', 'Blue', 'Blue', 'Blue'],
datasets: [{
data: [10, 1, 1, 1],
backgroundColor: [
'rgba(255, 0, 0, 0.7)',
'rgba(0, 0, 255, 0.6)',
'rgba(0, 0, 255, 0.6)',
'rgba(0, 0, 255, 0.6)',
],
borderColor: 'white',
borderWidth: [20, 0, 0, 0]
}]
},
options: {
cutoutPercentage : 70,
borderSkipped: 'top',
}
});
</script>
如何使红色和蓝色图表元素的高度相同?
换句话说,我要么愿意
top
和bottom
边框top
和bottom
边框。left
和right
的蓝色元素应用0边框我尝试使用borderSkipped
,但没有用。