I have a set of data points like
{ x: 5, y: 10 }, { x: 10, y: 15 }, { x: 20, y: 25 }
. With Chart.js, I can easily create a chart based on these points. Is there a method to retrieve the y value for a specific x value, such as 13, from the rendered chart? My current setup involves Chart.js version 2.9.3 and vue.js. Any suggestions or guidance would be greatly appreciated!