score:3

Accepted answer

for the tooltips position you can use xalign: 'right' but then you have to be sure there's enough space on the left side of the chart because the tooltip will always be displayed on the left side of the point.

"decrease the distance from the cursor to the item that displays the tooltip" is not possible when you use intersect: false because it will always display a tooltip with this option.

i would use intersect: true (or simply omit it because that's the default) combined with an increased hit radius for events like tooltip.

elements: {
  point: {
    hitradius: 20
  }
},

here's a jsbin to demonstrate these options.


Related Query

More Query from same tag