I want to trigger the tooltip everywhere in the chart area without worrying about the points. How could I do that?
Expected:

Current:
If I move my mouse to near the data point it will trigger the tooltip and show. otherwise, it will hide. This behavior will make the tooltip not continuously, it makes the tooltip disappear for a certain time.
See intersect in documentation
I guess you want:
tooltips: {
mode: 'nearest',
axis: 'x',
intersect: false
}
Most helpful comment
See
intersectin documentationI guess you want: