I have customized the points on the line graph using chart js, but for some reason, the points show the actual values in the background.
How can I hide them
Here is the picture for your reference

Here is my data config
const data = {
labels: labels,
datasets: [
{
label: "b",
data: [65, 59, 80, 81, 56, 55, 40],
borderColor: "#16ac85",
borderWidth: 2,
lineTension: 0,
/* point options */
pointBorderColor: "#16ac85",
pointBackgroundColor: "white",
pointBorderWidth: 2,
pointRadius: 5,
pointHitRadius: 10,
pointHoverRadius: 10,
pointHoverBackgroundColor: "white",
pointHoverBorderColor: "#68c9b0",
pointHoverBorderWidth: 5,
fill: true,
},
{
label: "n",
data: [28, 48, 40, 19, 86, 27, 12, 90],
borderColor: "#d2efe7",
backgroundColor: "rgb(247, 252, 2, 0.5)",
borderWidth: 2,
lineTension: 0,
/* point options */
pointBorderColor: "#16ac85",
pointBackgroundColor: "white",
pointBorderWidth: 2,
pointRadius: 5,
pointHitRadius: 10,
pointHoverRadius: 10,
pointHoverBackgroundColor: "white",
pointHoverBorderColor: "#68c9b0",
pointHoverBorderWidth: 5,
},
],
}