Personalicé los puntos en el gráfico de líneas usando chart js, pero por alguna razón, los puntos muestran los valores reales en segundo plano.
¿Cómo puedo ocultarlos? Aquí está la imagen para su referencia. 
Aquí está mi configuración de datos
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, }, ], }