[Chartjs]-How to get point coordinates in chart.js scatter plot?

1👍

You can use scatter_ref.current.scales.x.getValueForPixel(xValue) and scatter_ref.current.scales.y.getValueForPixel(yValue) to get the values you see on the axis

Leave a comment