[Chartjs]-Disable tooltip for Line chart for one line

1👍

This can be done by setting pointRadius and pointHitRadius to 0.

datasets:[{ data:[...], pointRadius: 0, pointHitRadius:0 }]

Leave a comment