Originally I set the fill color for each point to be completely transparent. If I run my mouse over the graph, the points pop up. I want to hide all points so that the line
You can set the pointRadius to zero.
var myChart = new Chart( ctx, { type: 'line', data: { labels: [...] datasets: [ { data: [...], pointRadius: 0, # <<< Here. } ] }, options: {} })