答案 0 :(得分:9)
您必须将 pointRadius
属性设置为 1
以及(因此最初点变小),以及 pointHoverRadius
(悬停时仍然很小)
pointRadius: 1,
pointHoverRadius: 1
答案 1 :(得分:9)
它确实需要进入数据集,就像这样:
{
type: 'scatter',
data: {
labels: ['2015', '2016', '2017', '2018', '2019', '2020'],
datasets: [
{
label: 'Cars',
data: [{x:-10,y:0}, {x:0,y:10}, {x:10,y:5}, {x:4,y:8}],
pointRadius: 10,
....
},
{
label: 'Bikes',
data: [{x:10,y:3}, {x:-2,y:6}, {x:9,y:3}, {x:11,y:6}],
pointRadius: 10,
...
}
]
},
options: {
...
}
}