如何在ChartJS中更改点的大小

时间:2017-09-13 09:39:56

标签: javascript chart.js

我想更改图表中点的大小。 enter image description here

要点应该尽可能小。试图使用

pointHoverRadius: 1

但它不起作用。

提前致谢,

2 个答案:

答案 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: {
       ...
    }

}