'Disable tooltip for Line chart for one line
I am creating a line chart with multiple lines. I am trying to disable the tooltip that pops up over one of the lines. Is it possible to disable the tool top for one of the lines, but not all of them?
Solution 1:[1]
This can be done by setting pointRadius and pointHitRadius to 0.
datasets:[{ data:[...], pointRadius: 0, pointHitRadius:0 }]
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | user309810 |