如何在图表 Js 中隐藏点标签?

How can I hide point label in chart Js?

我写了下面的代码来生成雷达图,我试图在 y 轴上隐藏标签点。 版本:2.9.4

var radarData = {
labels : [1,2,3,4,5,6,7,8,9,10,11,12,13],
datasets : [
    {
        backgroundColor: "#fff",
        borderColor: "rgb(255,70,0)",
        pointBackgroundColor: "rgb(255,70,0)",
        pointBorderColor: "rgb(255,70,0)",
        pointHoverBackgroundColor: "rgb(255,70,0)",
        pointHoverBorderColor: "rgb(255, 99, 132)",
        data : [2,12]
    }
]
};

var ctx = document.getElementById("radar1").getContext("2d");

var myNewChart = new Chart(ctx, {
    type: "radar",
    fill: true,
    data: radarData,
    options: {
        legend: {
            display: false
        },
        tooltips: {
            enabled: false
        },
    }
});

我得到的输出如下

我想从下面的图片中删除标记的标签

如何删除它?

是调用滴答,隐藏

scale: {
    ticks: {
        display: false
    }
},