有什么办法可以将蓝色的扇形部分移出?
并去除我边界上的小尖峰?
我尝试查看代码中边框的呈现方式。
有人可以帮助吗?
这就是我的饼图现在的样子
更新:
我删除了奇怪的边框。 现在的问题是,我如何将其从中间移出更多……有人对此有解决方案吗?
答案 0 :(得分:1)
borderWidth
是你的朋友
var ctx = document.getElementById("myChart").getContext('2d');
var myChart = new Chart(ctx, {
type: 'pie',
data: {
labels: ["Green", "Blue", "Gray", "Purple", "Yellow", "Red", "Black"],
datasets: [{
backgroundColor: [
"#2ecc71",
"#3498db",
"#95a5a6",
"#9b59b6",
"#f1c40f",
"#e74c3c",
"#34495e"
],
borderWidth: [0, 0, 0, 0, 0, 0, 0],
data: [12, 19, 3, 17, 28, 24, 7]
}]
}
});