答案 0 :(得分:2)
您可以通过为图表选项中的图例标签设置usePointStyle
属性为true
来完成此操作,就像这样......
options: {
legend: {
labels: {
usePointStyle: true //<-- set this
}
},
...
}
答案 1 :(得分:0)
像这样输入数据集:
datasets: [{
data: [10, 20, 30],
backgroundColor: [
'red',
'orange',
'blue'
],
}]